From fc0269561742b284653242296325be8c223e5c7b Mon Sep 17 00:00:00 2001 From: "F.N. Claessen" Date: Mon, 20 Jan 2025 14:03:51 +0100 Subject: [PATCH 01/33] feat: add stubs for tests and initial code structure Signed-off-by: F.N. Claessen --- flexmeasures_s2/api/tests/test_api.py | 58 +++++++++++++++---- flexmeasures_s2/conftest.py | 50 +++++++++++++++- flexmeasures_s2/models/__init__.py | 0 flexmeasures_s2/models/const.py | 2 + flexmeasures_s2/scheduler/schedulers.py | 15 +++++ flexmeasures_s2/scheduler/schemas.py | 14 ++++- flexmeasures_s2/scheduler/tests/__init__.py | 0 flexmeasures_s2/scheduler/tests/test_frbc.py | 18 ++++++ .../scheduler/tests/test_schemas.py | 20 +++++++ 9 files changed, 163 insertions(+), 14 deletions(-) create mode 100644 flexmeasures_s2/models/__init__.py create mode 100644 flexmeasures_s2/models/const.py create mode 100644 flexmeasures_s2/scheduler/tests/__init__.py create mode 100644 flexmeasures_s2/scheduler/tests/test_frbc.py create mode 100644 flexmeasures_s2/scheduler/tests/test_schemas.py diff --git a/flexmeasures_s2/api/tests/test_api.py b/flexmeasures_s2/api/tests/test_api.py index d2048ad..3f4eb6f 100644 --- a/flexmeasures_s2/api/tests/test_api.py +++ b/flexmeasures_s2/api/tests/test_api.py @@ -1,16 +1,52 @@ from flask import url_for +from flask_security import decorators as fs_decorators +from rq.job import Job +from flexmeasures.api.tests.test_auth_token import patched_check_token +from flexmeasures.api.tests.utils import UserContext +from flexmeasures.data.services.scheduling import ( + handle_scheduling_exception, + get_data_source_for_job, +) +from flexmeasures.data.tests.utils import work_on_rq -def test_get_somedata_needs_authtoken(client): - response = client.get( - url_for("flexmeasures-s2 API.somedata"), - headers={"content-type": "application/json"}, - follow_redirects=True, - ) - assert response.status_code == 401 # HTTP error code 401 Unauthorized. - assert "application/json" in response.content_type - assert "not be properly authenticated" in response.json["message"] +def test_s2_frbc_api(monkeypatch, app, setup_frbc_asset): + sensor = setup_frbc_asset.sensors[0] -# TODO: The somedata endpoint requires authentication to be testes successfully. -# We'll need to add a user in conftest, which also requires us to add a db to testing + with UserContext("test_admin_user@seita.nl") as admin: + auth_token = admin.get_auth_token() + + monkeypatch.setattr(fs_decorators, "_check_token", patched_check_token) + with app.test_client() as client: + trigger_schedule_response = client.post( + url_for("SensorAPI:trigger_schedule", id=sensor.id), + json={ + "flex-context": { + "target-profile": {}, # add target profile + } + }, + headers={"Authorization": auth_token}, + ) + print("Server responded with:\n%s" % trigger_schedule_response.json) + assert trigger_schedule_response.status_code == 200 + job_id = trigger_schedule_response.json["schedule"] + + # Now that our scheduling job was accepted, we process the scheduling queue + work_on_rq(app.queues["scheduling"], exc_handler=handle_scheduling_exception) + job = Job.fetch(job_id, connection=app.queues["scheduling"].connection).is_finished + assert job.is_finished is True + + # First, make sure the expected scheduler data source is now there + job.refresh() # catch meta info that was added on this very instance + scheduler_source = get_data_source_for_job(job) + assert scheduler_source.model == "S2Scheduler" + + # try to retrieve the schedule through the /sensors//schedules/ [GET] api endpoint + # todo: to be discussed: the response from the S2Scheduler might get a different format than the FM default + # get_schedule_response = client.get( + # url_for("SensorAPI:get_schedule", id=sensor.id, uuid=job_id), + # query_string={"duration": "PT48H"}, + # ) + # print("Server responded with:\n%s" % get_schedule_response.json) + # assert get_schedule_response.status_code == 200 diff --git a/flexmeasures_s2/conftest.py b/flexmeasures_s2/conftest.py index 186ee1a..0fe56ba 100644 --- a/flexmeasures_s2/conftest.py +++ b/flexmeasures_s2/conftest.py @@ -1,12 +1,18 @@ import pytest +from flask_sqlalchemy import SQLAlchemy + +from flexmeasures import Asset, AssetType, Sensor, Account from flexmeasures.app import create as create_flexmeasures_app +from flexmeasures.auth.policy import ADMIN_ROLE from flexmeasures.conftest import ( # noqa F401 db, fresh_db, -) # Use these fixtures to rely on the FlexMeasures database. +) # Use these fixtures to rely on the FlexMeasures database. There might be others in flexmeasures/conftest you want to also re-use +from flexmeasures.data.services.users import create_user -# There might be others in flexmeasures/conftest you want to also re-use +from flexmeasures_s2 import S2_SCHEDULER_SPECS +from flexmeasures_s2.models.const import FRBC_TYPE @pytest.fixture(scope="session") @@ -25,3 +31,43 @@ def app(): ctx.pop() print("DONE WITH APP FIXTURE") + + +@pytest.fixture(scope="module") +def setup_admin(db: SQLAlchemy): # noqa: F811 + account = Account(name="Some FlexMeasures host") + db.session.add(account) + create_user( + username="Test Admin User", + email="test_admin_user@seita.nl", + account_name=account.name, + password="testtest", + user_roles=dict(name=ADMIN_ROLE, description="A user who can do everything."), + ) + yield account + + +@pytest.fixture(scope="module") +def setup_frbc_asset(db: SQLAlchemy, setup_admin): # noqa: F811 + asset_type = AssetType(name=FRBC_TYPE) + asset = Asset( + name="Test FRBC asset", + generic_asset_type=asset_type, + owner=setup_admin, + ) + asset.attributes = { + "custom-scheduler": S2_SCHEDULER_SPECS, + "flex-model": { + "S2-FRBC-device-state": {}, # todo: add serialized state + }, + } + db.session.add(asset) + sensor = Sensor( + name="power", + unit="kW", + event_resolution="PT5M", + generic_asset=asset, + ) + db.session.add(sensor) + db.session.flush() # assign (asset and sensor) IDs + yield asset diff --git a/flexmeasures_s2/models/__init__.py b/flexmeasures_s2/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/models/const.py b/flexmeasures_s2/models/const.py new file mode 100644 index 0000000..6ff6a35 --- /dev/null +++ b/flexmeasures_s2/models/const.py @@ -0,0 +1,2 @@ +NAMESPACE = "fm-s2" +FRBC_TYPE = f"{NAMESPACE}.FRBC" diff --git a/flexmeasures_s2/scheduler/schedulers.py b/flexmeasures_s2/scheduler/schedulers.py index 7ab3080..7a683e6 100644 --- a/flexmeasures_s2/scheduler/schedulers.py +++ b/flexmeasures_s2/scheduler/schedulers.py @@ -1,6 +1,8 @@ import pandas as pd from flexmeasures import Scheduler +from flexmeasures_s2.scheduler.schemas import S2FlexModelSchema, TNOFlexContextSchema + class S2Scheduler(Scheduler): @@ -12,6 +14,7 @@ def compute(self, *args, **kwargs): Just a dummy scheduler that always plans to consume at maximum capacity. (Schedulers return positive values for consumption, and negative values for production) """ + raise NotImplementedError("todo: implement scheduling logic") return pd.Series( self.sensor.get_attribute("capacity_in_mw"), index=pd.date_range( @@ -21,4 +24,16 @@ def compute(self, *args, **kwargs): def deserialize_config(self): """Do not care about any flex config sent in.""" + # Find flex-model in asset attributes + self.flex_model = self.asset.attributes.get("flex-model", {}) + + self.deserialize_flex_config() self.config_deserialized = True + + def deserialize_flex_config(self): + """Deserialize flex-model and flex-context""" + # Deserialize flex-model + self.flex_model = S2FlexModelSchema().load(self.flex_model) + + # Deserialize self.flex_context + self.flex_context = TNOFlexContextSchema().load(self.flex_context) diff --git a/flexmeasures_s2/scheduler/schemas.py b/flexmeasures_s2/scheduler/schemas.py index 9e42dfa..bed6480 100644 --- a/flexmeasures_s2/scheduler/schemas.py +++ b/flexmeasures_s2/scheduler/schemas.py @@ -1,5 +1,17 @@ -from marshmallow import Schema +from flexmeasures.data.schemas import AwareDateTimeField, DurationField + +from marshmallow import Schema, fields class S2FlexModelSchema(Schema): ... + + +class TNOTargetProfile(Schema): + start = AwareDateTimeField() + duration = DurationField() + values = fields.List(fields.Float) + + +class TNOFlexContextSchema(Schema): + target_profile = fields.Nested(TNOTargetProfile()) diff --git a/flexmeasures_s2/scheduler/tests/__init__.py b/flexmeasures_s2/scheduler/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/scheduler/tests/test_frbc.py b/flexmeasures_s2/scheduler/tests/test_frbc.py new file mode 100644 index 0000000..e0ef854 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/test_frbc.py @@ -0,0 +1,18 @@ +import pandas as pd + +from flexmeasures_s2.scheduler.schedulers import S2Scheduler + + +def test_s2_frbc_scheduler(setup_frbc_asset): + scheduler = S2Scheduler( + setup_frbc_asset, + start=pd.Timestamp("2025-01-20T13:00+01"), + end=pd.Timestamp("2025-01-20T19:00+01"), + resolution=pd.Timedelta("PT1H"), + flex_model={}, # S2Scheduler fetches this from asset attributes + flex_context={ + "target-profile": {}, # todo: port target profile from Java test + }, + ) + results = scheduler.compute() + assert results == "todo: check for expected results" diff --git a/flexmeasures_s2/scheduler/tests/test_schemas.py b/flexmeasures_s2/scheduler/tests/test_schemas.py new file mode 100644 index 0000000..0f61a4d --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/test_schemas.py @@ -0,0 +1,20 @@ +import pytest + +from flexmeasures_s2.scheduler.schemas import TNOTargetProfile + + +@pytest.mark.parametrize( + "target_profile", + [ + # todo: port test cases from Java test + {}, + { + "start": "2025-01-20T13:00+01", + "duration": "PT3H", + "values": [0, 1, 2], + }, + ], +) +def test_tno_profile_schema(target_profile: dict): + """Check whether the profile schema""" + TNOTargetProfile().load(target_profile) From 854804796e12aaa0a674fa0f6cc3ae40b486caa9 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 20 Jan 2025 23:21:10 +0100 Subject: [PATCH 02/33] Joule profile for target profile and original data Signed-off-by: Vlad Iftime --- .../scheduler/tests/JouleProfileOriginal.py | 290 ++++++++++++++++++ flexmeasures_s2/scheduler/tests/test_frbc.py | 3 +- 2 files changed, 292 insertions(+), 1 deletion(-) create mode 100644 flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py diff --git a/flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py b/flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py new file mode 100644 index 0000000..3dcc247 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py @@ -0,0 +1,290 @@ +JouleProfileTarget = [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, +] diff --git a/flexmeasures_s2/scheduler/tests/test_frbc.py b/flexmeasures_s2/scheduler/tests/test_frbc.py index e0ef854..1ba199f 100644 --- a/flexmeasures_s2/scheduler/tests/test_frbc.py +++ b/flexmeasures_s2/scheduler/tests/test_frbc.py @@ -1,6 +1,7 @@ import pandas as pd from flexmeasures_s2.scheduler.schedulers import S2Scheduler +from JouleProfileOriginal import JouleProfileTarget def test_s2_frbc_scheduler(setup_frbc_asset): @@ -11,7 +12,7 @@ def test_s2_frbc_scheduler(setup_frbc_asset): resolution=pd.Timedelta("PT1H"), flex_model={}, # S2Scheduler fetches this from asset attributes flex_context={ - "target-profile": {}, # todo: port target profile from Java test + "target-profile": JouleProfileTarget, # todo: port target profile from Java test }, ) results = scheduler.compute() From c9468dcca3a20a2a7b180ff83b8a55e475177d18 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Tue, 21 Jan 2025 17:05:32 +0100 Subject: [PATCH 03/33] Added the device state as ported from Java Signed-off-by: Vlad Iftime --- flexmeasures_s2/conftest.py | 4 +- .../scheduler/s2_frbc_device_state.py | 10 + flexmeasures_s2/scheduler/test_frbc_device.py | 127 ++++++++ flexmeasures_s2/scheduler/tests/test.java | 287 ++++++++++++++++++ 4 files changed, 427 insertions(+), 1 deletion(-) create mode 100644 flexmeasures_s2/scheduler/s2_frbc_device_state.py create mode 100644 flexmeasures_s2/scheduler/test_frbc_device.py create mode 100644 flexmeasures_s2/scheduler/tests/test.java diff --git a/flexmeasures_s2/conftest.py b/flexmeasures_s2/conftest.py index 0fe56ba..3646db3 100644 --- a/flexmeasures_s2/conftest.py +++ b/flexmeasures_s2/conftest.py @@ -14,6 +14,8 @@ from flexmeasures_s2 import S2_SCHEDULER_SPECS from flexmeasures_s2.models.const import FRBC_TYPE +from flexmeasures_s2.scheduler.test_frbc_device import test_device_state # noqa: F401 + @pytest.fixture(scope="session") def app(): @@ -58,7 +60,7 @@ def setup_frbc_asset(db: SQLAlchemy, setup_admin): # noqa: F811 asset.attributes = { "custom-scheduler": S2_SCHEDULER_SPECS, "flex-model": { - "S2-FRBC-device-state": {}, # todo: add serialized state + "S2-FRBC-device-state": test_device_state, # ?todo: add serialized state }, } db.session.add(asset) diff --git a/flexmeasures_s2/scheduler/s2_frbc_device_state.py b/flexmeasures_s2/scheduler/s2_frbc_device_state.py new file mode 100644 index 0000000..4553f0a --- /dev/null +++ b/flexmeasures_s2/scheduler/s2_frbc_device_state.py @@ -0,0 +1,10 @@ +from s2python.frbc import ( + FRBCSystemDescription, +) + +from typing import List +from pydantic import BaseModel + + +class S2FrbcDeviceState(BaseModel): + system_descriptions: List[FRBCSystemDescription] diff --git a/flexmeasures_s2/scheduler/test_frbc_device.py b/flexmeasures_s2/scheduler/test_frbc_device.py new file mode 100644 index 0000000..6195075 --- /dev/null +++ b/flexmeasures_s2/scheduler/test_frbc_device.py @@ -0,0 +1,127 @@ +import datetime +import uuid + +from s2_frbc_device_state import S2FrbcDeviceState + +from s2python.frbc import ( + FRBCSystemDescription, + FRBCActuatorDescription, + FRBCOperationMode, + FRBCOperationModeElement, + FRBCStorageDescription, +) + +from s2python.common import ( + Commodity, + Transition, + Timer, + NumberRange, + PowerRange, + CommodityQuantity, +) + + +# Define the test object +test_device_state = S2FrbcDeviceState( + system_descriptions=[ + FRBCSystemDescription( + valid_from=datetime.datetime.now(tz=datetime.timezone.utc), + actuators=[ + FRBCActuatorDescription( + id=uuid.uuid4(), + diagnostic_label="charge", + supported_commodities=[Commodity.ELECTRICITY], + operation_modes=[ + FRBCOperationMode( + id="charge.on", + diagnostic_label="charge.on", + elements=[ + FRBCOperationModeElement( + fill_level_range=NumberRange( + start_of_range=0.0, + end_of_range=100.0, + ), + fill_rate=NumberRange( + start_of_range=0.0054012349, + end_of_range=0.0054012349, + ), + power_ranges=[ + PowerRange( + start_of_range=28000.0, + end_of_range=28000.0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + ], + abnormal_condition_only=False, + ), + FRBCOperationMode( + id="charge.off", + diagnostic_label="charge.off", + elements=[ + FRBCOperationModeElement( + fill_level_range=NumberRange( + start_of_range=0, + end_of_range=100, + ), + fill_rate=NumberRange( + start_of_range=0, + end_of_range=0, + ), + power_ranges=[ + PowerRange( + start_of_range=0, + end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + running_costs=None, + ) + ], + abnormal_condition_only=False, + ), + ], + transitions=[ + Transition( + id="off.to.on", + from_="charge.off", + to="charge.on", + start_timers=["on.to.off.timer"], + blocking_timers=["off.to.on.timer"], + abnormal_condition_only=False, + ), + Transition( + id="on.to.off", + from_="charge.on", + to="charge.off", + start_timers=["off.to.on.timer"], + blocking_timers=["on.to.off.timer"], + abnormal_condition_only=False, + ), + ], + timers=[ + Timer( + id="on.to.off.timer", + diagnostic_label="on.to.off.timer", + duration=30, + ), + Timer( + id="off.to.on.timer", + diagnostic_label="off.to.on.timer", + duration=30, + ), + ], + ) + ], + storage=FRBCStorageDescription( + diagnostic_label="battery", + fill_level_label="SoC %", + provides_leakage_behaviour=False, + provides_fill_level_target_profile=True, + provides_usage_forecast=False, + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + ), + ) + ], +) diff --git a/flexmeasures_s2/scheduler/tests/test.java b/flexmeasures_s2/scheduler/tests/test.java new file mode 100644 index 0000000..8529e05 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/test.java @@ -0,0 +1,287 @@ +S2FrbcDeviceState(systemDescriptions=[class FRBCSystemDescription { + validFrom: 1970-01-01T02:00+01:00 + actuators: [class FRBCActuatorDescription { + id: 74d81672-4698-4d92-bc26-12d15369a428 + diagnosticLabel: charge + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: charge.on + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: charge.on + diagnosticLabel: charge.on + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0.0054012349 + endOfRange: 0.0054012349 + } + powerRanges: [class CommonPowerRange { + startOfRange: 28000.0 + endOfRange: 28000.0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }, class FRBCOperationMode { + id: charge.off + diagnosticLabel: charge.off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [class CommonTransition { + id: off.to.on + from: charge.off + to: charge.on + startTimers: [on.to.off.timer] + blockingTimers: [off.to.on.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }, class CommonTransition { + id: on.to.off + from: charge.on + to: charge.off + startTimers: [off.to.on.timer] + blockingTimers: [on.to.off.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }] + timers: [class CommonTimer { + id: on.to.off.timer + diagnosticLabel: on.to.off.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }, class CommonTimer { + id: off.to.on.timer + diagnosticLabel: off.to.on.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: true + providesUsageForecast: false + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 0.0 + } + leakageBehaviour: null + } +}, class FRBCSystemDescription { + validFrom: 1970-01-01T09:13+01:00 + actuators: [class FRBCActuatorDescription { + id: e0ddc962-e865-4d85-bff5-17a2c14bcec6 + diagnosticLabel: off + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: off + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: off + diagnosticLabel: off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [] + timers: [] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: false + providesUsageForecast: true + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 100.0 + } + leakageBehaviour: null + } +}, class FRBCSystemDescription { + validFrom: 1970-01-01T13:49+01:00 + actuators: [class FRBCActuatorDescription { + id: 751551e9-acd0-4ec8-9da8-377f9faa5e36 + diagnosticLabel: charge + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: charge.on + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: charge.on + diagnosticLabel: charge.on + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0.01099537114 + endOfRange: 0.01099537114 + } + powerRanges: [class CommonPowerRange { + startOfRange: 57000.0 + endOfRange: 57000.0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }, class FRBCOperationMode { + id: charge.off + diagnosticLabel: charge.off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [class CommonTransition { + id: off.to.on + from: charge.off + to: charge.on + startTimers: [on.to.off.timer] + blockingTimers: [off.to.on.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }, class CommonTransition { + id: on.to.off + from: charge.on + to: charge.off + startTimers: [off.to.on.timer] + blockingTimers: [on.to.off.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }] + timers: [class CommonTimer { + id: on.to.off.timer + diagnosticLabel: on.to.off.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }, class CommonTimer { + id: off.to.on.timer + diagnosticLabel: off.to.on.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: true + providesUsageForecast: false + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 37.7463951 + } + leakageBehaviour: null + } +}], leakageBehaviours=[class FRBCLeakageBehaviour { + validFrom: 1970-01-01T02:00+01:00 + elements: [class FRBCLeakageBehaviourElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + leakageRate: 0 + }] +}, class FRBCLeakageBehaviour { + validFrom: 1970-01-01T13:49+01:00 + elements: [class FRBCLeakageBehaviourElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + leakageRate: 0 + }] +}], usageForecasts=[class FRBCUsageForecast { + startTime: 1970-01-01T02:00+01:00 + elements: [class FRBCUsageForecastElement { + duration: 25980 + usageRateUpperLimit: 0 + usageRateUpper95PPR: 0 + usageRateUpper68PPR: 0 + usageRateExpected: 0 + usageRateLower68PPR: 0 + usageRateLower95PPR: 0 + usageRateLowerLimit: 0 + }] +}, class FRBCUsageForecast { + startTime: 1970-01-01T09:13+01:00 + elements: [class FRBCUsageForecastElement { + duration: 16560 + usageRateUpperLimit: null + usageRateUpper95PPR: null + usageRateUpper68PPR: null + usageRateExpected: -0.00... \ No newline at end of file From e0694ca0345143b4d470bb2a31ab2722c35df402 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 22 Jan 2025 09:17:30 +0100 Subject: [PATCH 04/33] Added serialised JSON for FRBC device state Signed-off-by: Vlad Iftime --- .../scheduler/test_frbc_device.json | 123 ++++++++ flexmeasures_s2/scheduler/test_frbc_device.py | 13 +- .../scheduler/tests/JouleProfileOriginal.py | 290 ------------------ flexmeasures_s2/scheduler/tests/test_frbc.py | 4 +- 4 files changed, 134 insertions(+), 296 deletions(-) create mode 100644 flexmeasures_s2/scheduler/test_frbc_device.json delete mode 100644 flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py diff --git a/flexmeasures_s2/scheduler/test_frbc_device.json b/flexmeasures_s2/scheduler/test_frbc_device.json new file mode 100644 index 0000000..ef38b22 --- /dev/null +++ b/flexmeasures_s2/scheduler/test_frbc_device.json @@ -0,0 +1,123 @@ +{ + "system_descriptions": [ + { + "message_type": "FRBC.SystemDescription", + "message_id": "f6769b77-3d85-4d61-8a28-3bd70fc5cef4", + "valid_from": "2025-01-21 17:52:08.121054+00:00", + "actuators": [ + { + "id": "1ebd596b-3031-403f-95a1-9520550b161b", + "diagnostic_label": "charge", + "supported_commodities": [ + "Commodity.ELECTRICITY" + ], + "operation_modes": [ + { + "id": "charge.on", + "diagnostic_label": "charge.on", + "elements": [ + { + "fill_level_range": { + "start_of_range": 0.0, + "end_of_range": 100.0 + }, + "fill_rate": { + "start_of_range": 0.0054012349, + "end_of_range": 0.0054012349 + }, + "power_ranges": [ + { + "start_of_range": 28000.0, + "end_of_range": 28000.0, + "commodity_quantity": "CommodityQuantity.ELECTRIC_POWER_L1" + } + ], + "running_costs": null + } + ], + "abnormal_condition_only": false + }, + { + "id": "charge.off", + "diagnostic_label": "charge.off", + "elements": [ + { + "fill_level_range": { + "start_of_range": 0.0, + "end_of_range": 100.0 + }, + "fill_rate": { + "start_of_range": 0.0, + "end_of_range": 0.0 + }, + "power_ranges": [ + { + "start_of_range": 0.0, + "end_of_range": 0.0, + "commodity_quantity": "CommodityQuantity.ELECTRIC_POWER_L1" + } + ], + "running_costs": null + } + ], + "abnormal_condition_only": false + } + ], + "transitions": [ + { + "id": "off.to.on", + "from_": "charge.off", + "to": "charge.on", + "start_timers": [ + "on.to.off.timer" + ], + "blocking_timers": [ + "off.to.on.timer" + ], + "transition_costs": null, + "transition_duration": null, + "abnormal_condition_only": false + }, + { + "id": "on.to.off", + "from_": "charge.on", + "to": "charge.off", + "start_timers": [ + "off.to.on.timer" + ], + "blocking_timers": [ + "on.to.off.timer" + ], + "transition_costs": null, + "transition_duration": null, + "abnormal_condition_only": false + } + ], + "timers": [ + { + "id": "on.to.off.timer", + "diagnostic_label": "on.to.off.timer", + "duration": 30 + }, + { + "id": "off.to.on.timer", + "diagnostic_label": "off.to.on.timer", + "duration": 30 + } + ] + } + ], + "storage": { + "diagnostic_label": "battery", + "fill_level_label": "SoC %", + "provides_leakage_behaviour": false, + "provides_fill_level_target_profile": true, + "provides_usage_forecast": false, + "fill_level_range": { + "start_of_range": 0.0, + "end_of_range": 100.0 + } + } + } + ] +} \ No newline at end of file diff --git a/flexmeasures_s2/scheduler/test_frbc_device.py b/flexmeasures_s2/scheduler/test_frbc_device.py index 6195075..5508712 100644 --- a/flexmeasures_s2/scheduler/test_frbc_device.py +++ b/flexmeasures_s2/scheduler/test_frbc_device.py @@ -1,7 +1,7 @@ import datetime import uuid -from s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.scheduler.s2_frbc_device_state import S2FrbcDeviceState from s2python.frbc import ( FRBCSystemDescription, @@ -25,10 +25,11 @@ test_device_state = S2FrbcDeviceState( system_descriptions=[ FRBCSystemDescription( + message_id=str(uuid.uuid4()), valid_from=datetime.datetime.now(tz=datetime.timezone.utc), actuators=[ FRBCActuatorDescription( - id=uuid.uuid4(), + id=str(uuid.uuid4()), # Ensure id is a string diagnostic_label="charge", supported_commodities=[Commodity.ELECTRICITY], operation_modes=[ @@ -85,7 +86,9 @@ transitions=[ Transition( id="off.to.on", - from_="charge.off", + **{ + "from": "charge.off" + }, # Use a workaround to set 'from' since it's a keyword in Python, to="charge.on", start_timers=["on.to.off.timer"], blocking_timers=["off.to.on.timer"], @@ -93,7 +96,9 @@ ), Transition( id="on.to.off", - from_="charge.on", + **{ + "from": "charge.on" + }, # Use a workaround to set 'from' since it's a keyword in Python, to="charge.off", start_timers=["off.to.on.timer"], blocking_timers=["on.to.off.timer"], diff --git a/flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py b/flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py deleted file mode 100644 index 3dcc247..0000000 --- a/flexmeasures_s2/scheduler/tests/JouleProfileOriginal.py +++ /dev/null @@ -1,290 +0,0 @@ -JouleProfileTarget = [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -] diff --git a/flexmeasures_s2/scheduler/tests/test_frbc.py b/flexmeasures_s2/scheduler/tests/test_frbc.py index 1ba199f..84757e3 100644 --- a/flexmeasures_s2/scheduler/tests/test_frbc.py +++ b/flexmeasures_s2/scheduler/tests/test_frbc.py @@ -1,7 +1,7 @@ import pandas as pd from flexmeasures_s2.scheduler.schedulers import S2Scheduler -from JouleProfileOriginal import JouleProfileTarget +from flexmeasures_s2.scheduler.tests.joule_profile import get_JouleProfileTarget def test_s2_frbc_scheduler(setup_frbc_asset): @@ -12,7 +12,7 @@ def test_s2_frbc_scheduler(setup_frbc_asset): resolution=pd.Timedelta("PT1H"), flex_model={}, # S2Scheduler fetches this from asset attributes flex_context={ - "target-profile": JouleProfileTarget, # todo: port target profile from Java test + "target-profile": get_JouleProfileTarget(), # todo: port target profile from Java test }, ) results = scheduler.compute() From 20ef8c801a04f7bbe5549d5fa3f9a580bc0acee6 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 24 Jan 2025 15:02:59 +0100 Subject: [PATCH 05/33] Added the target joule profile Signed-off-by: Vlad Iftime --- .../scheduler/tests/joule_profile.py | 297 ++++++++++++++++++ 1 file changed, 297 insertions(+) create mode 100644 flexmeasures_s2/scheduler/tests/joule_profile.py diff --git a/flexmeasures_s2/scheduler/tests/joule_profile.py b/flexmeasures_s2/scheduler/tests/joule_profile.py new file mode 100644 index 0000000..2080332 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/joule_profile.py @@ -0,0 +1,297 @@ +from typing import List + + +JouleProfileTarget: List = [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, +] + + +def get_JouleProfileTarget() -> List: + return JouleProfileTarget From 05bd40e893d9dd08da3810b0770bab755a92627f Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 31 Jan 2025 20:17:23 +0100 Subject: [PATCH 06/33] Created the first version of the python version Signed-off-by: Vlad Iftime --- .../profile_steering/common/__init__.py | 0 .../profile_steering/common/joule_profile.py | 87 +++++ .../profile_steering/common/proposal.py | 104 ++++++ .../profile_steering/common/soc_profile.py | 16 + .../profile_steering/common/target_profile.py | 90 +++++ .../profile_steering/frbc/__init__.py | 0 .../frbc/device_planner/__init__.py | 0 .../s2_frbc_device_controller.py | 148 ++++++++ .../device_planner/s2_frbc_device_planner.py | 147 ++++++++ .../device_planner/s2_frbc_device_state.py | 62 ++++ .../s2_frbc_device_state_wrapper.py | 300 ++++++++++++++++ .../device_planner/s2_frbc_insight_profile.py | 30 ++ .../s2_frbc_instruction_profile.py | 33 ++ .../frbc/device_planner/s2_frbc_plan.py | 32 ++ .../frbc/fill_level_target_util.py | 44 +++ .../profile_steering/frbc/frbc_state.py | 339 ++++++++++++++++++ .../profile_steering/frbc/frbc_timestep.py | 140 ++++++++ .../frbc/operation_mode_profile_tree.py | 209 +++++++++++ .../frbc/selection_reason_result.py | 55 +++ .../frbc/usage_forecast_util.py | 41 +++ .../profile_steering/s2_utils/__init__.py | 0 .../s2_utils/number_range_wrapper.py | 24 ++ .../s2_utils/s2_actuator_configuration.py | 20 ++ flexmeasures_s2/scheduler/schemas.py | 3 +- 24 files changed, 1922 insertions(+), 2 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/common/__init__.py create mode 100644 flexmeasures_s2/profile_steering/common/joule_profile.py create mode 100644 flexmeasures_s2/profile_steering/common/proposal.py create mode 100644 flexmeasures_s2/profile_steering/common/soc_profile.py create mode 100644 flexmeasures_s2/profile_steering/common/target_profile.py create mode 100644 flexmeasures_s2/profile_steering/frbc/__init__.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_controller.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_planner.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state_wrapper.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_insight_profile.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_instruction_profile.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_plan.py create mode 100644 flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py create mode 100644 flexmeasures_s2/profile_steering/frbc/frbc_state.py create mode 100644 flexmeasures_s2/profile_steering/frbc/frbc_timestep.py create mode 100644 flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py create mode 100644 flexmeasures_s2/profile_steering/frbc/selection_reason_result.py create mode 100644 flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py create mode 100644 flexmeasures_s2/profile_steering/s2_utils/__init__.py create mode 100644 flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py create mode 100644 flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py diff --git a/flexmeasures_s2/profile_steering/common/__init__.py b/flexmeasures_s2/profile_steering/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py new file mode 100644 index 0000000..bdf2a07 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -0,0 +1,87 @@ +from typing import List, Optional + + +class JouleProfile: + def __init__( + self, profile_start, timestep_duration, elements: Optional[List[int]] = None + ): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.elements = elements if elements is not None else [] + + def avg_power_at(self, date) -> Optional[float]: + element = self.element_at(date) + if element is None: + return None + return element / self.timestep_duration.total_seconds() + + def element_at(self, date) -> Optional[int]: + index = int( + (date - self.profile_start).total_seconds() + // self.timestep_duration.total_seconds() + ) + if 0 <= index < len(self.elements): + return self.elements[index] + return None + + def add(self, other: "JouleProfile") -> "JouleProfile": + self.check_compatibility(other) + summed_elements = [a + b for a, b in zip(self.elements, other.elements)] + return JouleProfile(self.profile_start, self.timestep_duration, summed_elements) + + def subtract(self, other: "JouleProfile") -> "JouleProfile": + self.check_compatibility(other) + diff_elements = [a - b for a, b in zip(self.elements, other.elements)] + return JouleProfile(self.profile_start, self.timestep_duration, diff_elements) + + def absolute_values(self) -> "JouleProfile": + abs_elements = [abs(e) for e in self.elements] + return JouleProfile(self.profile_start, self.timestep_duration, abs_elements) + + def sum_quadratic_distance(self) -> float: + return sum(e**2 for e in self.elements if e is not None) + + def is_below_or_equal(self, other: "JouleProfile") -> bool: + self.check_compatibility(other) + return all( + a <= b for a, b in zip(self.elements, other.elements) if b is not None + ) + + def is_above_or_equal(self, other: "JouleProfile") -> bool: + self.check_compatibility(other) + return all( + a >= b for a, b in zip(self.elements, other.elements) if b is not None + ) + + def minimum(self, other: "JouleProfile") -> "JouleProfile": + self.check_compatibility(other) + min_elements = [min(a, b) for a, b in zip(self.elements, other.elements)] + return JouleProfile(self.profile_start, self.timestep_duration, min_elements) + + def maximum(self, other: "JouleProfile") -> "JouleProfile": + self.check_compatibility(other) + max_elements = [max(a, b) for a, b in zip(self.elements, other.elements)] + return JouleProfile(self.profile_start, self.timestep_duration, max_elements) + + def get_total_energy(self) -> int: + return sum(self.elements) + + def get_total_energy_production(self) -> int: + return sum(min(0, e) for e in self.elements) + + def get_total_energy_consumption(self) -> int: + return sum(max(0, e) for e in self.elements) + + def get_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index] + return None + + def check_compatibility(self, other: "JouleProfile"): + if self.timestep_duration != other.timestep_duration or len( + self.elements + ) != len(other.elements): + raise ValueError("Profiles are not compatible") + + def __str__(self) -> str: + return f"JouleProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py new file mode 100644 index 0000000..01a5eed --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -0,0 +1,104 @@ +from typing import Optional +from common.joule_profile import JouleProfile +from common.target_profile import TargetProfile + + +# TODO: need a DevicePlanner class +class Proposal: + def __init__( + self, + global_diff_target: TargetProfile, + diff_to_congestion_max: JouleProfile, + diff_to_congestion_min: JouleProfile, + proposed_plan: JouleProfile, + old_plan: JouleProfile, + ): + self.global_diff_target = global_diff_target + self.diff_to_congestion_max = diff_to_congestion_max + self.diff_to_congestion_min = diff_to_congestion_min + self.proposed_plan = proposed_plan + self.old_plan = old_plan + self.global_improvement_value: Optional[float] = None + self.congestion_improvement_value: Optional[float] = None + self.cost_improvement_value: Optional[float] = None + + def get_global_improvement_value(self) -> float: + if self.global_improvement_value is None: + self.global_improvement_value = ( + self.global_diff_target.sum_quadratic_distance() + - self.global_diff_target.add(self.old_plan) + .subtract(self.proposed_plan) + .sum_quadratic_distance() + ) + return self.global_improvement_value + + def get_cost_improvement_value(self) -> float: + if self.cost_improvement_value is None: + self.cost_improvement_value = self.get_cost( + self.old_plan, self.global_diff_target + ) - self.get_cost(self.proposed_plan, self.global_diff_target) + return self.cost_improvement_value + + @staticmethod + def get_cost(plan: JouleProfile, target_profile: TargetProfile) -> float: + cost = 0.0 + for i in range(target_profile.get_profile_metadata().get_nr_of_timesteps()): + joule_usage = plan.get_elements()[i] + target_element = target_profile.get_elements()[i] + if isinstance(target_element, TargetProfile.TariffElement): + cost += (joule_usage / 3_600_000) * target_element.get_tariff() + return cost + + def get_congestion_improvement_value(self) -> float: + if self.congestion_improvement_value is None: + zero_profile = JouleProfile( + self.old_plan.get_profile_metadata(), + [0] * len(self.old_plan.get_elements()), + ) + exceed_max_target_old = self.diff_to_congestion_max.minimum( + zero_profile + ).sum_quadratic_distance() + exceed_max_target_proposal = ( + self.diff_to_congestion_max.add(self.old_plan) + .subtract(self.proposed_plan) + .minimum(zero_profile) + .sum_quadratic_distance() + ) + exceed_min_target_old = self.diff_to_congestion_min.maximum( + zero_profile + ).sum_quadratic_distance() + exceed_min_target_proposal = ( + self.diff_to_congestion_min.add(self.old_plan) + .subtract(self.proposed_plan) + .maximum(zero_profile) + .sum_quadratic_distance() + ) + if ( + exceed_max_target_old == exceed_max_target_proposal + and exceed_min_target_old == exceed_min_target_proposal + ): + self.congestion_improvement_value = 0.0 + else: + self.congestion_improvement_value = ( + exceed_max_target_old + + exceed_min_target_old + - exceed_max_target_proposal + - exceed_min_target_proposal + ) + return self.congestion_improvement_value + + def is_preferred_to(self, other: "Proposal") -> bool: + if self.get_congestion_improvement_value() >= 0: + if ( + self.get_global_improvement_value() + > other.get_global_improvement_value() + ): + return True + elif ( + self.get_global_improvement_value() + == other.get_global_improvement_value() + and self.get_cost_improvement_value() + > other.get_cost_improvement_value() + ): + return True + return False diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py new file mode 100644 index 0000000..2212744 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -0,0 +1,16 @@ +from typing import List, Optional + + +class SoCProfile: + def __init__( + self, profile_start, timestep_duration, elements: Optional[List[float]] = None + ): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.elements = elements if elements is not None else [] + + def default_value(self) -> Optional[float]: + return None + + def __str__(self) -> str: + return f"SoCProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py new file mode 100644 index 0000000..9d6aa89 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -0,0 +1,90 @@ +from typing import List, Union +from common.joule_profile import JouleProfile + + +class TargetProfile: + class Element: + pass + + class JouleElement(Element): + def __init__(self, joules: int): + self.joules = joules + + def get_joules(self) -> int: + return self.joules + + class NullElement(Element): + pass + + NULL_ELEMENT = NullElement() + + def __init__(self, profile_start, timestep_duration, elements: List[Element]): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.elements = elements + + def get_total_energy(self) -> int: + return sum( + e.get_joules() + for e in self.elements + if isinstance(e, TargetProfile.JouleElement) + ) + + def target_elements_to_joule_profile(self) -> JouleProfile: + joules = [ + e.get_joules() + for e in self.elements + if isinstance(e, TargetProfile.JouleElement) + ] + return JouleProfile(self.profile_start, self.timestep_duration, joules) + + def nr_of_joule_target_elements(self) -> int: + return len( + [e for e in self.elements if isinstance(e, TargetProfile.JouleElement)] + ) + + def subtract(self, other: JouleProfile) -> "TargetProfile": + diff_elements = [] + for i, element in enumerate(self.elements): + if ( + isinstance(element, TargetProfile.JouleElement) + and other.get_energy_for_timestep(i) is not None + ): + diff_elements.append( + TargetProfile.JouleElement( + element.get_joules() - other.get_energy_for_timestep(i) + ) + ) + elif isinstance(element, TargetProfile.TariffElement): + diff_elements.append(element) + else: + diff_elements.append(TargetProfile.NULL_ELEMENT) + return TargetProfile(self.profile_start, self.timestep_duration, diff_elements) + + def add(self, other: JouleProfile) -> "TargetProfile": + sum_elements = [] + for i, element in enumerate(self.elements): + if ( + isinstance(element, TargetProfile.JouleElement) + and other.get_energy_for_timestep(i) is not None + ): + sum_elements.append( + TargetProfile.JouleElement( + element.get_joules() + other.get_energy_for_timestep(i) + ) + ) + elif isinstance(element, TargetProfile.TariffElement): + sum_elements.append(element) + else: + sum_elements.append(TargetProfile.NULL_ELEMENT) + return TargetProfile(self.profile_start, self.timestep_duration, sum_elements) + + def sum_quadratic_distance(self) -> float: + return sum( + e.get_joules() ** 2 + for e in self.elements + if isinstance(e, TargetProfile.JouleElement) + ) + + def __str__(self) -> str: + return f"TargetProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" diff --git a/flexmeasures_s2/profile_steering/frbc/__init__.py b/flexmeasures_s2/profile_steering/frbc/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py b/flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_controller.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_controller.py new file mode 100644 index 0000000..a79f65f --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_controller.py @@ -0,0 +1,148 @@ +from datetime import datetime +from common.joule_profile import JouleProfile +from common.target_profile import TargetProfile +from common.proposal import Proposal + +from operation_mode_profile_tree import OperationModeProfileTree +from s2_frbc_plan import S2FrbcPlan +from s2_frbc_instruction_profile import S2FrbcInstructionProfile + + +class S2FrbcDeviceController: + def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): + self.s2_frbc_state = s2_frbc_state + self.profile_metadata = profile_metadata + self.zero_profile = JouleProfile(profile_metadata, 0) + self.null_profile = JouleProfile(profile_metadata, None) + self.state_tree = None + if self.is_storage_available(s2_frbc_state): + self.state_tree = OperationModeProfileTree( + s2_frbc_state, profile_metadata, plan_due_by_date + ) + self.priority_class = s2_frbc_state.get_priority_class() + self.latest_plan = None + self.accepted_plan = None + + def is_storage_available(self, storage_state): + latest_before_first_ptu = OperationModeProfileTree.get_latest_before( + self.profile_metadata.get_profile_start(), + storage_state.get_system_descriptions(), + lambda sd: sd.get_valid_from(), + ) + if not storage_state.get_system_descriptions(): + return False + if latest_before_first_ptu is None: + active_and_upcoming_system_descriptions_has_active_storage = any( + sd.get_valid_from() <= self.profile_metadata.get_profile_end() + and sd.get_valid_from() >= self.profile_metadata.get_profile_start() + and sd.get_storage().get_status() is not None + for sd in storage_state.get_system_descriptions() + ) + else: + active_and_upcoming_system_descriptions_has_active_storage = any( + sd.get_valid_from() <= self.profile_metadata.get_profile_end() + and sd.get_valid_from() >= latest_before_first_ptu.get_valid_from() + and sd.get_storage().get_status() is not None + for sd in storage_state.get_system_descriptions() + ) + return ( + storage_state.is_online() + and active_and_upcoming_system_descriptions_has_active_storage + ) + + def get_device_id(self): + return self.s2_frbc_state.get_device_id() + + def get_connection_id(self): + return self.s2_frbc_state.get_connection_id() + + def get_device_name(self): + return self.s2_frbc_state.get_device_name() + + def create_improved_planning( + self, diff_to_global_target, diff_to_max, diff_to_min, plan_due_by_date + ): + target = diff_to_global_target.add(self.accepted_plan.get_energy()) + max_profile = diff_to_max.add(self.accepted_plan.get_energy()) + min_profile = diff_to_min.add(self.accepted_plan.get_energy()) + if self.is_storage_available(self.s2_frbc_state): + self.latest_plan = self.state_tree.find_best_plan( + target, min_profile, max_profile + ) + else: + self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) + proposal = Proposal( + diff_to_global_target, + diff_to_max, + diff_to_min, + self.latest_plan.get_energy(), + self.accepted_plan.get_energy(), + self, + ) + return proposal + + def create_initial_planning(self, plan_due_by_date): + if self.is_storage_available(self.s2_frbc_state): + self.latest_plan = self.state_tree.find_best_plan( + # TODO: make an util or make a new class + TargetProfile.null_profile(self.profile_metadata), + self.null_profile, + self.null_profile, + ) + else: + self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) + self.accepted_plan = self.latest_plan + return self.latest_plan.get_energy() + + def accept_proposal(self, accepted_proposal): + if accepted_proposal.get_origin() != self: + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) + if not accepted_proposal.get_proposed_plan().equals( + self.latest_plan.get_energy() + ): + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) + if accepted_proposal.get_congestion_improvement_value() < 0: + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" + ) + self.accepted_plan = self.latest_plan + + def get_current_profile(self): + return self.accepted_plan.get_energy() + + def get_latest_plan(self): + return self.latest_plan + + def get_device_plan(self): + return DevicePlan( + self.get_device_id(), + self.get_device_name(), + self.get_connection_id(), + self.accepted_plan.get_energy(), + self.accepted_plan.get_fill_level(), + self.convert_plan_to_instructions( + self.profile_metadata, self.accepted_plan + ), + self.accepted_plan.get_s2_frbc_insights_profile(), + ) + + @staticmethod + def convert_plan_to_instructions(profile_metadata, device_plan): + elements = [] + actuator_configurations_per_timestep = device_plan.get_operation_mode_id() + if actuator_configurations_per_timestep is not None: + for actuator_configurations in actuator_configurations_per_timestep: + new_element = S2FrbcInstructionProfile.Element( + not actuator_configurations, actuator_configurations + ) + elements.append(new_element) + else: + elements = [None] * profile_metadata.get_nr_of_timesteps() + return S2FrbcInstructionProfile(profile_metadata, elements) + + def get_priority_class(self): + return self.priority_class diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_planner.py new file mode 100644 index 0000000..c189fa1 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_planner.py @@ -0,0 +1,147 @@ +from datetime import datetime, timedelta + +from operation_mode_profile_tree import OperationModeProfileTree +from common.joule_profile import JouleProfile +from common.proposal import Proposal +from common.target_profile import TargetProfile +from s2_frbc_plan import S2FrbcPlan +from s2_frbc_instruction_profile import S2FrbcInstructionProfile + + +class S2FrbcDevicePlanner: + def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): + self.s2_frbc_state = s2_frbc_state + self.profile_metadata = profile_metadata + self.zero_profile = JouleProfile(profile_metadata, 0) + self.null_profile = JouleProfile(profile_metadata, None) + self.state_tree = None + if self.is_storage_available(s2_frbc_state): + self.state_tree = OperationModeProfileTree( + s2_frbc_state, profile_metadata, plan_due_by_date + ) + self.priority_class = s2_frbc_state.get_priority_class() + self.latest_plan = None + self.accepted_plan = None + + def is_storage_available(self, storage_state): + latest_before_first_ptu = OperationModeProfileTree.get_latest_before( + self.profile_metadata.get_profile_start(), + storage_state.get_system_descriptions(), + lambda sd: sd.get_valid_from(), + ) + if not storage_state.get_system_descriptions(): + return False + if latest_before_first_ptu is None: + active_and_upcoming_system_descriptions_has_active_storage = any( + sd.get_valid_from() <= self.profile_metadata.get_profile_end() + and sd.get_valid_from() >= self.profile_metadata.get_profile_start() + and sd.get_storage().get_status() is not None + for sd in storage_state.get_system_descriptions() + ) + else: + active_and_upcoming_system_descriptions_has_active_storage = any( + sd.get_valid_from() <= self.profile_metadata.get_profile_end() + and sd.get_valid_from() >= latest_before_first_ptu.get_valid_from() + and sd.get_storage().get_status() is not None + for sd in storage_state.get_system_descriptions() + ) + return ( + storage_state.is_online() + and active_and_upcoming_system_descriptions_has_active_storage + ) + + def get_device_id(self): + return self.s2_frbc_state.get_device_id() + + def get_connection_id(self): + return self.s2_frbc_state.get_connection_id() + + def get_device_name(self): + return self.s2_frbc_state.get_device_name() + + def create_improved_planning( + self, diff_to_global_target, diff_to_max, diff_to_min, plan_due_by_date + ): + target = diff_to_global_target.add(self.accepted_plan.get_energy()) + max_profile = diff_to_max.add(self.accepted_plan.get_energy()) + min_profile = diff_to_min.add(self.accepted_plan.get_energy()) + if self.is_storage_available(self.s2_frbc_state): + self.latest_plan = self.state_tree.find_best_plan( + target, min_profile, max_profile + ) + else: + self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) + proposal = Proposal( + diff_to_global_target, + diff_to_max, + diff_to_min, + self.latest_plan.get_energy(), + self.accepted_plan.get_energy(), + self, + ) + return proposal + + def create_initial_planning(self, plan_due_by_date): + if self.is_storage_available(self.s2_frbc_state): + self.latest_plan = self.state_tree.find_best_plan( + TargetProfile.null_profile(self.profile_metadata), + self.null_profile, + self.null_profile, + ) + else: + self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) + self.accepted_plan = self.latest_plan + return self.latest_plan.get_energy() + + def accept_proposal(self, accepted_proposal): + if accepted_proposal.get_origin() != self: + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) + if not accepted_proposal.get_proposed_plan().equals( + self.latest_plan.get_energy() + ): + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) + if accepted_proposal.get_congestion_improvement_value() < 0: + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" + ) + self.accepted_plan = self.latest_plan + + def get_current_profile(self): + return self.accepted_plan.get_energy() + + def get_latest_plan(self): + return self.latest_plan + + def get_device_plan(self): + return DevicePlan( + self.get_device_id(), + self.get_device_name(), + self.get_connection_id(), + self.accepted_plan.get_energy(), + self.accepted_plan.get_fill_level(), + self.convert_plan_to_instructions( + self.profile_metadata, self.accepted_plan + ), + self.accepted_plan.get_s2_frbc_insights_profile(), + ) + + @staticmethod + def convert_plan_to_instructions(profile_metadata, device_plan): + elements = [] + actuator_configurations_per_timestep = device_plan.get_operation_mode_id() + if actuator_configurations_per_timestep is not None: + for actuator_configurations in actuator_configurations_per_timestep: + new_element = S2FrbcInstructionProfile.Element( + not actuator_configurations, actuator_configurations + ) + elements.append(new_element) + else: + elements = [None] * profile_metadata.get_nr_of_timesteps() + return S2FrbcInstructionProfile(profile_metadata, elements) + + def get_priority_class(self): + return self.priority_class diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state.py new file mode 100644 index 0000000..71ab315 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state.py @@ -0,0 +1,62 @@ +from datetime import datetime +from typing import List + + +class S2FrbcDeviceState: + class ComputationalParameters: + def __init__(self, nr_of_buckets: int, stratification_layers: int): + self.nr_of_buckets = nr_of_buckets + self.stratification_layers = stratification_layers + + def get_nr_of_buckets(self) -> int: + return self.nr_of_buckets + + def get_stratification_layers(self) -> int: + return self.stratification_layers + + def __init__( + self, + device_id: str, + device_name: str, + connection_id: str, + priority_class: int, + timestamp: datetime, + energy_in_current_timestep, + is_online: bool, + power_forecast, + system_descriptions: List, + leakage_behaviours: List, + usage_forecasts: List, + fill_level_target_profiles: List, + computational_parameters: "S2FrbcDeviceState.ComputationalParameters", + ): + self.device_id = device_id + self.device_name = device_name + self.connection_id = connection_id + self.priority_class = priority_class + self.timestamp = timestamp + self.energy_in_current_timestep = energy_in_current_timestep + self.is_online = is_online + self.power_forecast = power_forecast + self.system_descriptions = system_descriptions + self.leakage_behaviours = leakage_behaviours + self.usage_forecasts = usage_forecasts + self.fill_level_target_profiles = fill_level_target_profiles + self.computational_parameters = computational_parameters + + def get_system_descriptions(self) -> List: + return self.system_descriptions + + def get_leakage_behaviours(self) -> List: + return self.leakage_behaviours + + def get_usage_forecasts(self) -> List: + return self.usage_forecasts + + def get_fill_level_target_profiles(self) -> List: + return self.fill_level_target_profiles + + def get_computational_parameters( + self, + ) -> "S2FrbcDeviceState.ComputationalParameters": + return self.computational_parameters diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state_wrapper.py new file mode 100644 index 0000000..c5e3210 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state_wrapper.py @@ -0,0 +1,300 @@ +from datetime import datetime, timedelta +from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from s2python.common import CommodityQuantity + + +class S2FrbcDeviceStateWrapper: + epsilon = 1e-4 + + def __init__(self, device_state): + self.device_state = device_state + self.nr_of_buckets = ( + device_state.get_computational_parameters().get_nr_of_buckets() + ) + self.nr_of_stratification_layers = 0 # Initialize appropriately + self.actuator_operation_mode_map_per_timestep = {} + self.all_actions = {} + self.operation_mode_uses_factor_map = {} + self.operation_modes = {} + + def is_online(self): + return self.device_state.is_online() + + def get_power_forecast(self): + return self.device_state.get_power_forecast() + + def get_system_descriptions(self): + return self.device_state.get_system_descriptions() + + def get_leakage_behaviours(self): + return self.device_state.get_leakage_behaviours() + + def get_usage_forecasts(self): + return self.device_state.get_usage_forecasts() + + def get_fill_level_target_profiles(self): + return self.device_state.get_fill_level_target_profiles() + + def get_energy_in_current_timestep(self): + return self.device_state.get_energy_in_current_timestep() + + def get_computational_parameters(self): + return self.device_state.get_computational_parameters() + + def get_actuators(self, target_timestep): + actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( + target_timestep.get_start_date() + ) + if actuator_operation_mode_map is None: + actuator_operation_mode_map = self.create_actuator_operation_mode_map( + target_timestep + ) + return actuator_operation_mode_map.keys() + + def get_normal_operation_modes_for_actuator(self, target_timestep, actuator_id): + actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( + target_timestep.get_start_date() + ) + if actuator_operation_mode_map is None: + actuator_operation_mode_map = self.create_actuator_operation_mode_map( + target_timestep + ) + return actuator_operation_mode_map.get(actuator_id) + + def create_actuator_operation_mode_map(self, target_timestep): + actuator_operation_mode_map = {} + for a in target_timestep.get_system_description().get_actuators(): + actuator_operation_mode_map[a.get_id()] = [ + om.get_id() + for om in a.get_operation_modes() + if not om.get_abnormal_condition_only() + ] + self.actuator_operation_mode_map_per_timestep[ + target_timestep.get_start_date() + ] = actuator_operation_mode_map + return actuator_operation_mode_map + + def get_operation_mode(self, target_timestep, actuator_id, operation_mode_id): + om_key = f"{actuator_id}-{operation_mode_id}" + if om_key in self.operation_modes: + return self.operation_modes[om_key] + actuators = target_timestep.get_system_description().get_actuators() + found_actuator_description = next( + (ad for ad in actuators if ad.get_id() == actuator_id), None + ) + if found_actuator_description: + for operation_mode in found_actuator_description.get_operation_modes(): + if operation_mode.get_id() == operation_mode_id: + found_operation_mode = FrbcOperationModeWrapper(operation_mode) + self.operation_modes[om_key] = found_operation_mode + return found_operation_mode + return None + + def operation_mode_uses_factor( + self, target_timestep, actuator_id, operation_mode_id + ): + key = f"{actuator_id}-{operation_mode_id}" + if key not in self.operation_mode_uses_factor_map: + result = self.get_operation_mode( + target_timestep, actuator_id, operation_mode_id + ).is_uses_factor() + self.operation_mode_uses_factor_map[key] = result + return self.operation_mode_uses_factor_map[key] + + def get_all_possible_actuator_configurations(self, target_timestep): + timestep_date = target_timestep.get_start_date() + if timestep_date not in self.all_actions: + possible_actuator_configs = {} + for actuator_id in self.get_actuators(target_timestep): + actuator_list = [] + for operation_mode_id in self.get_normal_operation_modes_for_actuator( + target_timestep, actuator_id + ): + if self.operation_mode_uses_factor( + target_timestep, actuator_id, operation_mode_id + ): + for i in range(self.nr_of_stratification_layers + 1): + factor_for_actuator = i * ( + 1.0 / self.nr_of_stratification_layers + ) + actuator_list.append( + S2ActuatorConfiguration( + operation_mode_id, factor_for_actuator + ) + ) + else: + actuator_list.append( + S2ActuatorConfiguration(operation_mode_id, 0.0) + ) + possible_actuator_configs[actuator_id] = actuator_list + keys = list(possible_actuator_configs.keys()) + actions_for_timestep = [] + combination = [0] * len(keys) + actions_for_timestep.append( + self.combination_to_map(combination, keys, possible_actuator_configs) + ) + while self.increase(combination, keys, possible_actuator_configs): + actions_for_timestep.append( + self.combination_to_map( + combination, keys, possible_actuator_configs + ) + ) + self.all_actions[timestep_date] = actions_for_timestep + return self.all_actions[timestep_date] + + def combination_to_map(self, cur, keys, possible_actuator_configs): + combination = {} + for i, key in enumerate(keys): + combination[key] = possible_actuator_configs[key][cur[i]] + return combination + + def increase(self, cur, keys, possible_actuator_configs): + cur[0] += 1 + for i, key in enumerate(keys): + if cur[i] >= len(possible_actuator_configs[key]): + if i + 1 >= len(keys): + return False + cur[i] = 0 + cur[i + 1] += 1 + return True + + @staticmethod + def get_transition( + target_timestep, actuator_id, from_operation_mode_id, to_operation_mode_id + ): + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( + target_timestep, actuator_id + ) + for transition in actuator_description.get_transitions(): + if ( + transition.get_from() == from_operation_mode_id + and transition.get_to() == to_operation_mode_id + ): + return transition + return None + + def get_operation_mode_power(self, om, fill_level, factor): + element = self.find_operation_mode_element(om, fill_level) + power_watt = 0 + for power_range in element.get_power_ranges(): + if power_range.get_commodity_quantity() in [ + CommodityQuantity.ELECTRIC_POWER_L1, + CommodityQuantity.ELECTRIC_POWER_L2, + CommodityQuantity.ELECTRIC_POWER_L3, + CommodityQuantity.ELECTRIC_POWER_3_PHASE_SYMMETRIC, + ]: + start = power_range.get_start_of_range() + end = power_range.get_end_of_range() + power_watt += (end - start) * factor + start + return power_watt + + @staticmethod + def find_operation_mode_element(om, fill_level): + element = next( + ( + e + for e in om.get_elements() + if e.get_fill_level_range().get_start_of_range() + <= fill_level + <= e.get_fill_level_range().get_end_of_range() + ), + None, + ) + if element is None: + first = om.get_elements()[0] + last = om.get_elements()[-1] + element = ( + first + if fill_level < first.get_fill_level_range().get_start_of_range() + else last + ) + return element + + def get_operation_mode_fill_rate(self, om, fill_level, factor): + element = self.find_operation_mode_element(om, fill_level) + fill_rate = element.get_fill_rate() + start = fill_rate.get_end_of_range() + end = fill_rate.get_start_of_range() + return (start - end) * factor + end + + @staticmethod + def get_leakage_rate(target_timestep, fill_level): + if target_timestep.get_leakage_behaviour() is None: + return 0 + else: + return S2FrbcDeviceStateWrapper.find_leakage_element( + target_timestep, fill_level + ).get_leakage_rate() + + @staticmethod + def find_leakage_element(target_timestep, fill_level): + leakage = target_timestep.get_leakage_behaviour() + element = next( + ( + e + for e in leakage.get_elements() + if e.get_fill_level_range().get_start_of_range() + <= fill_level + <= e.get_fill_level_range().get_end_of_range() + ), + None, + ) + if element is None: + first = leakage.get_elements()[0] + last = leakage.get_elements()[-1] + element = ( + first + if fill_level < first.get_fill_level_range().get_start_of_range() + else last + ) + return element + + @staticmethod + def calculate_bucket(target_timestep, fill_level): + fill_level_lower_limit = ( + target_timestep.get_system_description() + .get_storage() + .get_fill_level_range() + .get_start_of_range() + ) + fill_level_upper_limit = ( + target_timestep.get_system_description() + .get_storage() + .get_fill_level_range() + .get_end_of_range() + ) + return int( + (fill_level - fill_level_lower_limit) + / (fill_level_upper_limit - fill_level_lower_limit) + * target_timestep.get_nr_of_buckets() + ) + + @staticmethod + def get_timer_duration_milliseconds(target_timestep, actuator_id, timer_id): + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( + target_timestep, actuator_id + ) + timer = next( + (t for t in actuator_description.get_timers() if t.get_id() == timer_id), + None, + ) + return timer.get_duration() if timer else 0 + + @staticmethod + def get_timer_duration(target_timestep, actuator_id, timer_id): + return timedelta( + milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( + target_timestep, actuator_id, timer_id + ) + ) + + @staticmethod + def get_actuator_description(target_timestep, actuator_id): + return next( + ( + ad + for ad in target_timestep.get_system_description().get_actuators() + if ad.get_id() == actuator_id + ), + None, + ) diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_insight_profile.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_insight_profile.py new file mode 100644 index 0000000..7d69deb --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_insight_profile.py @@ -0,0 +1,30 @@ +from typing import List, Dict + + +class S2FrbcInsightsProfile: + def __init__( + self, profile_metadata, elements: List["S2FrbcInsightsProfile.Element"] + ): + self.profile_metadata = profile_metadata + self.elements = elements + + def default_value(self): + return None + + def build_profile_type(self, profile_metadata, elements): + return S2FrbcInsightsProfile(profile_metadata, elements) + + def to_insights_map(self) -> Dict[str, List[float]]: + insights_map = { + "fill_level_end_of_step": [ + e.get_fill_level_end_of_step() if e else None for e in self.elements + ] + } + return insights_map + + class Element: + def __init__(self, fill_level_end_of_step: float): + self.fill_level_end_of_step = fill_level_end_of_step + + def get_fill_level_end_of_step(self) -> float: + return self.fill_level_end_of_step diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_instruction_profile.py new file mode 100644 index 0000000..1c1074e --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_instruction_profile.py @@ -0,0 +1,33 @@ +from typing import Dict, List +from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration + + +class S2FrbcInstructionProfile: + class Element: + def __init__( + self, idle: bool, actuator_configuration: Dict[str, S2ActuatorConfiguration] + ): + self.idle = idle + self.actuator_configuration = actuator_configuration + + def is_idle(self) -> bool: + return self.idle + + def get_actuator_configuration(self) -> Dict[str, S2ActuatorConfiguration]: + return self.actuator_configuration + + def __init__( + self, + profile_start, + timestep_duration, + elements: List["S2FrbcInstructionProfile.Element"], + ): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.elements = elements + + def default_value(self) -> "S2FrbcInstructionProfile.Element": + return S2FrbcInstructionProfile.Element(True, {}) + + def __str__(self) -> str: + return f"S2FrbcInstructionProfile(elements={self.elements})" diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_plan.py new file mode 100644 index 0000000..2d33b62 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_plan.py @@ -0,0 +1,32 @@ +from typing import List, Dict + + +class S2FrbcPlan: + def __init__( + self, + idle: bool, + energy, + fill_level, + operation_mode_id: List[Dict[str, "S2ActuatorConfiguration"]], + s2_frbc_insights_profile, + ): + self.idle = idle + self.energy = energy + self.fill_level = fill_level + self.operation_mode_id = operation_mode_id + self.s2_frbc_insights_profile = s2_frbc_insights_profile + + def is_idle(self) -> bool: + return self.idle + + def get_energy(self): + return self.energy + + def get_fill_level(self): + return self.fill_level + + def get_operation_mode_id(self) -> List[Dict[str, "S2ActuatorConfiguration"]]: + return self.operation_mode_id + + def get_s2_frbc_insights_profile(self): + return self.s2_frbc_insights_profile diff --git a/flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py b/flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py new file mode 100644 index 0000000..c28839b --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py @@ -0,0 +1,44 @@ +from datetime import datetime, timedelta +from s2python.frbc import FRBCFillLevelTargetProfile, FRBCFillLevelTargetProfileElement + + +class FillLevelTargetElement: + def __init__(self, start, end, lower_limit, upper_limit): + self.start = start + self.end = end + self.lower_limit = lower_limit + self.upper_limit = upper_limit + + def split(self, date): + if self.date_in_element(date): + return [ + FillLevelTargetElement( + self.start, date, self.lower_limit, self.upper_limit + ), + FillLevelTargetElement( + date, self.end, self.lower_limit, self.upper_limit + ), + ] + return [] + + def date_in_element(self, date): + return self.start <= date <= self.end + + +class FillLevelTargetUtil: + @staticmethod + def from_fill_level_target_profile(fill_level_target_profile): + elements = [] + start = fill_level_target_profile.get_start_time() + for element in fill_level_target_profile.get_elements(): + end = start + timedelta(seconds=element.get_duration()) + elements.append( + FillLevelTargetElement( + start, + end, + element.get_fill_level_range().get_start_of_range(), + element.get_fill_level_range().get_end_of_range(), + ) + ) + start = end + timedelta(milliseconds=1) + return elements diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/frbc/frbc_state.py new file mode 100644 index 0000000..f4c4f6b --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/frbc_state.py @@ -0,0 +1,339 @@ +import logging +from datetime import datetime, timedelta +from s2python.frbc import ( + TargetProfile, + FRBCSystemDescription, +) +from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from Python.profile_steering.frbc.device_planner.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, +) +from frbc_timestep import FrbcTimestep +from selection_reason_result import SelectionResult, SelectionReason +from typing import Dict, Optional + + +class FrbcState: + constraint_epsilon = 1e-4 + tariff_epsilon = 0.5 + + def __init__( + self, + device_state: S2FrbcDeviceStateWrapper, + timestep: FrbcTimestep, + previous_state: Optional["FrbcState"] = None, + actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, + ): + self.device_state = device_state + self.timestep = timestep + self.previous_state = previous_state + self.system_description = timestep.get_system_description() + self.fill_level = ( + self.system_description.get_storage().get_status().get_present_fill_level() + ) + self.bucket = 0 + self.timestep_energy = 0 + self.sum_squared_distance = 0 + self.sum_squared_constraint_violation = 0 + self.sum_energy_cost = 0 + self.sum_squared_energy = 0 + self.selection_reason = None + self.actuator_configurations = actuator_configurations or {} + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + + if previous_state is None: + for actuator in self.system_description.get_actuators(): + actuator_status = actuator.get_status() + actuator_config = S2ActuatorConfiguration( + actuator_status.get_active_operation_mode_id(), + actuator_status.get_operation_mode_factor(), + ) + self.actuator_configurations[actuator.get_id()] = actuator_config + else: + self.calculate_state_values(previous_state, actuator_configurations) + + @staticmethod + def get_initial_timer_elapse_map_for_system_description( + system_description: FRBCSystemDescription, + ) -> Dict[str, datetime]: + timer_elapse_map = {} + for actuator in system_description.get_actuators(): + for timer in actuator.get_timers(): + timer_elapse_map[ + FrbcState.timer_key(actuator.get_id(), timer.get_id()) + ] = timer.get_finished_at() + return timer_elapse_map + + def calculate_state_values( + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], + ): + self.timestep_energy = 0 + self.fill_level = previous_state.get_fill_level() + seconds = self.timestep.get_duration_seconds() + for actuator_id, actuator_configuration in actuator_configurations.items(): + om = self.device_state.get_operation_mode( + self.timestep, + actuator_id, + actuator_configuration.get_operation_mode_id(), + ) + self.timestep_energy += ( + self.device_state.get_operation_mode_power( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds + ) + self.fill_level += ( + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds + ) + self.fill_level -= ( + S2FrbcDeviceStateWrapper.get_leakage_rate(self.timestep, self.fill_level) + * seconds + ) + self.fill_level += self.timestep.get_forecasted_usage() + self.bucket = S2FrbcDeviceStateWrapper.calculate_bucket( + self.timestep, self.fill_level + ) + self.update_timers(previous_state, actuator_configurations) + self.calculate_scores(previous_state) + self.timestep.add_state(self) + + def update_timers( + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], + ): + if ( + previous_state.system_description.get_valid_from() + == self.system_description.get_valid_from() + ): + self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() + for actuator_id, actuator_configuration in actuator_configurations.items(): + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + ) + new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if previous_operation_mode_id != new_operation_mode_id: + transition = S2FrbcDeviceStateWrapper.get_transition( + self.timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) + for timer_id in transition.get_start_timers(): + duration = S2FrbcDeviceStateWrapper.get_timer_duration( + self.timestep, actuator_id, timer_id + ) + new_finished_at = self.timestep.get_start_date() + duration + self.timer_elapse_map[ + FrbcState.timer_key(actuator_id, timer_id) + ] = new_finished_at + else: + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + + def calculate_scores(self, previous_state: "FrbcState"): + target = self.timestep.get_target() + if isinstance(target, TargetProfile.JouleElement): + self.sum_squared_distance = ( + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 + ) + self.sum_energy_cost = previous_state.get_sum_energy_cost() + elif isinstance(target, TargetProfile.TariffElement): + self.sum_squared_distance = previous_state.get_sum_squared_distance() + self.sum_energy_cost = ( + previous_state.get_sum_energy_cost() + + target.get_tariff() * (self.timestep_energy / 3_600_000) + ) + else: + self.sum_squared_distance = previous_state.get_sum_squared_distance() + self.sum_energy_cost = previous_state.get_sum_energy_cost() + squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + ) + if ( + self.timestep.get_max_constraint() is not None + and self.timestep_energy > self.timestep.get_max_constraint() + ): + squared_constraint_violation += ( + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 + if ( + self.timestep.get_min_constraint() is not None + and self.timestep_energy < self.timestep.get_min_constraint() + ): + squared_constraint_violation += ( + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 + self.sum_squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation + ) + self.sum_squared_energy = ( + previous_state.get_sum_squared_energy() + self.timestep_energy**2 + ) + + @staticmethod + def timer_key(actuator_id: str, timer_id: str) -> str: + return f"{actuator_id}-{timer_id}" + + def generate_next_timestep_states(self, target_timestep: FrbcTimestep): + all_actions = self.device_state.get_all_possible_actuator_configurations( + target_timestep + ) + for action in all_actions: + FrbcState.try_create_next_state(self, target_timestep, action) + + @staticmethod + def try_create_next_state( + previous_state: "FrbcState", + target_timestep: FrbcTimestep, + actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], + ): + if ( + previous_state.get_system_description().get_valid_from() + == target_timestep.get_system_description().get_valid_from() + ): + for ( + actuator_id, + actuator_configuration, + ) in actuator_configs_for_target_timestep.items(): + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + ) + new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if previous_operation_mode_id != new_operation_mode_id: + transition = S2FrbcDeviceStateWrapper.get_transition( + target_timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) + if transition is None: + return False + for timer_id in transition.get_blocking_timers(): + timer_is_finished_at = ( + previous_state.get_timer_elapse_map().get( + FrbcState.timer_key(actuator_id, timer_id) + ) + ) + if ( + timer_is_finished_at + and target_timestep.get_start_date() < timer_is_finished_at + ): + return False + FrbcState( + previous_state.device_state, + target_timestep, + previous_state, + actuator_configs_for_target_timestep, + ) + return True + + def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: + if ( + abs( + self.sum_squared_constraint_violation + - other_state.get_sum_squared_constraint_violation() + ) + >= self.constraint_epsilon + ): + return SelectionResult( + self.sum_squared_constraint_violation + < other_state.get_sum_squared_constraint_violation(), + SelectionReason.CONGESTION_CONSTRAINT, + ) + elif ( + abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) + >= self.constraint_epsilon + ): + return SelectionResult( + self.sum_squared_distance < other_state.get_sum_squared_distance(), + SelectionReason.ENERGY_TARGET, + ) + elif ( + abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) + >= self.tariff_epsilon + ): + return SelectionResult( + self.sum_energy_cost < other_state.get_sum_energy_cost(), + SelectionReason.TARIFF_TARGET, + ) + else: + return SelectionResult( + self.sum_squared_energy < other_state.get_sum_squared_energy(), + SelectionReason.MIN_ENERGY, + ) + + def is_within_fill_level_range(self): + fill_level_range = self.system_description.get_storage().get_fill_level_range() + return ( + self.fill_level >= fill_level_range.get_start_of_range() + and self.fill_level <= fill_level_range.get_end_of_range() + ) + + def get_fill_level_distance(self): + fill_level_range = self.system_description.get_storage().get_fill_level_range() + if self.fill_level < fill_level_range.get_start_of_range(): + return fill_level_range.get_start_of_range() - self.fill_level + else: + return self.fill_level - fill_level_range.get_end_of_range() + + def get_device_state(self): + return self.device_state + + def get_previous_state(self): + return self.previous_state + + def get_actuator_configurations(self): + return self.actuator_configurations + + def get_fill_level(self): + return self.fill_level + + def get_bucket(self): + return self.bucket + + def get_timestep_energy(self): + return self.timestep_energy + + def get_sum_squared_distance(self): + return self.sum_squared_distance + + def get_sum_squared_constraint_violation(self): + return self.sum_squared_constraint_violation + + def get_sum_energy_cost(self): + return self.sum_energy_cost + + def get_sum_squared_energy(self): + return self.sum_squared_energy + + def get_timer_elapse_map(self): + return self.timer_elapse_map + + def set_selection_reason(self, selection_reason: SelectionReason): + self.selection_reason = selection_reason + + def get_selection_reason(self): + return self.selection_reason diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py new file mode 100644 index 0000000..4d4fb9d --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py @@ -0,0 +1,140 @@ +from datetime import datetime, timedelta +from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour +from frbc_state import FrbcState, SelectionReason + + +class FrbcTimestep: + def __init__( + self, + start_date: datetime, + end_date: datetime, + system_description: FRBCSystemDescription, + leakage_behaviour: FRBCLeakageBehaviour, + fill_level_target: float, + forecasted_fill_level_usage: float, + computational_parameters: object, + ): + self.nr_of_buckets = computational_parameters.get_nr_of_buckets() + self.start_date = start_date + self.end_date = end_date + self.duration = end_date - start_date + self.system_description = system_description + self.leakage_behaviour = leakage_behaviour + self.fill_level_target = fill_level_target + self.forecasted_fill_level_usage = forecasted_fill_level_usage + self.state_list = [None] * (self.nr_of_buckets + 1) + self.emergency_state = None + + def get_nr_of_buckets(self): + return self.nr_of_buckets + + def set_targets(self, target, min_constraint, max_constraint): + self.target = target + self.min_constraint = min_constraint + self.max_constraint = max_constraint + + def add_state(self, state: FrbcState): + if state.is_within_fill_level_range(): + stored_state = self.state_list[state.get_bucket()] + if stored_state is None: + self.state_list[state.get_bucket()] = state + state.set_selection_reason(SelectionReason.NO_ALTERNATIVE) + else: + selection_result = state.is_preferable_than(stored_state) + if selection_result.result: + self.state_list[state.get_bucket()] = state + self.state_list[state.get_bucket()].set_selection_reason( + selection_result.reason + ) + else: + if ( + self.emergency_state is None + or state.get_fill_level_distance() + < self.emergency_state.get_fill_level_distance() + ): + self.emergency_state = state + state.set_selection_reason(SelectionReason.EMERGENCY_STATE) + + def add_all_states(self, states): + for state in states: + self.add_state(state) + + def get_start_date(self): + return self.start_date + + def get_end_date(self): + return self.end_date + + def get_system_description(self): + return self.system_description + + def get_leakage_behaviour(self): + return self.leakage_behaviour + + def get_duration(self): + return self.duration + + def get_duration_seconds(self): + return int(self.duration.total_seconds()) + + def get_target(self): + return self.target + + def get_min_constraint(self): + return self.min_constraint + + def get_max_constraint(self): + return self.max_constraint + + def get_fill_level_target(self): + return self.fill_level_target + + def get_state_list(self): + return self.state_list + + def get_final_states(self): + final_states = [state for state in self.state_list if state is not None] + if not final_states: + return [self.emergency_state] + return final_states + + def get_final_states_within_fill_level_target(self): + final_states = self.get_final_states() + if self.fill_level_target is None: + return final_states + final_states = [ + s for s in final_states if self.state_is_within_fill_level_target_range(s) + ] + if final_states: + return final_states + best_state = min( + self.get_final_states(), key=self.get_fill_level_target_distance + ) + return [best_state] + + def state_is_within_fill_level_target_range(self, state): + if self.fill_level_target is None: + return True + return ( + self.fill_level_target.get_start_of_range() is None + or state.get_fill_level() >= self.fill_level_target.get_start_of_range() + ) and ( + self.fill_level_target.get_end_of_range() is None + or state.get_fill_level() <= self.fill_level_target.get_end_of_range() + ) + + def get_fill_level_target_distance(self, state): + if ( + self.fill_level_target.get_end_of_range() is None + or state.get_fill_level() < self.fill_level_target.get_start_of_range() + ): + return self.fill_level_target.get_start_of_range() - state.get_fill_level() + else: + return state.get_fill_level() - self.fill_level_target.get_end_of_range() + + def get_forecasted_usage(self): + return self.forecasted_fill_level_usage + + def clear(self): + self.state_list = [None] * len(self.state_list) + self.emergency_state = None diff --git a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py new file mode 100644 index 0000000..71a75f9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py @@ -0,0 +1,209 @@ +from datetime import datetime, timedelta + +from frbc_timestep import FrbcTimestep +from Python.profile_steering.frbc.device_planner.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, +) +from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from frbc_state import FrbcState +from fill_level_target_util import FillLevelTargetUtil +from usage_forecast_util import UsageForecastUtil +from s2_utils.number_range_wrapper import NumberRangeWrapper +from device_planner.s2_frbc_plan import S2FrbcPlan +from common.joule_profile import JouleProfile +from common.soc_profile import SoCProfile + +# TODO: Add S2FrbcInsightsProfile? + + +class OperationModeProfileTree: + def __init__( + self, + device_state: S2FrbcDeviceStateWrapper, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, + ): + self.device_state = S2FrbcDeviceStateWrapper(device_state) + self.profile_metadata = profile_metadata + self.plan_due_by_date = plan_due_by_date + self.timestep_duration_seconds = int( + profile_metadata.get_timestep_duration().total_seconds() + ) + self.timesteps = [] + self.generate_timesteps() + + def generate_timesteps(self): + time_step_start = self.profile_metadata.get_profile_start() + for i in range(self.profile_metadata.get_nr_of_timesteps()): + time_step_end = ( + time_step_start + self.profile_metadata.get_timestep_duration() + ) + if i == 0: + time_step_start = self.plan_due_by_date + time_step_start_dt = time_step_start + current_system_description = self.get_latest_before( + time_step_start_dt, + self.device_state.get_system_descriptions(), + lambda sd: sd.get_valid_from(), + ) + current_leakage_behaviour = self.get_latest_before( + time_step_start_dt, + self.device_state.get_leakage_behaviours(), + lambda lb: lb.get_valid_from(), + ) + current_fill_level = self.get_latest_before( + time_step_start_dt, + self.device_state.get_fill_level_target_profiles(), + lambda fl: fl.get_start_time(), + ) + current_fill_level_target = None + if current_fill_level: + current_fill_level_target = ( + FillLevelTargetUtil.from_fill_level_target_profile( + current_fill_level + ) + ) + fill_level_target = self.get_fill_level_target_for_timestep( + current_fill_level_target, time_step_start, time_step_end + ) + current_usage_forecast = self.get_latest_before( + time_step_start_dt, + self.device_state.get_usage_forecasts(), + lambda uf: uf.get_start_time(), + ) + current_usage_forecast_profile = None + if current_usage_forecast: + current_usage_forecast_profile = ( + UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) + ) + usage_forecast = self.get_usage_forecast_for_timestep( + current_usage_forecast_profile, time_step_start, time_step_end + ) + self.timesteps.append( + FrbcTimestep( + time_step_start, + time_step_end, + current_system_description, + current_leakage_behaviour, + fill_level_target, + usage_forecast, + self.device_state.get_computational_parameters(), + ) + ) + time_step_start = time_step_end + + @staticmethod + def get_latest_before(before, select_from, get_date_time): + latest_before = None + latest_before_date_time = None + if select_from: + for current in select_from: + if current: + current_date_time = get_date_time(current) + if current_date_time <= before and ( + latest_before is None + or current_date_time > latest_before_date_time + ): + latest_before = current + latest_before_date_time = current_date_time + return latest_before + + @staticmethod + def get_fill_level_target_for_timestep( + fill_level_target_profile, time_step_start, time_step_end + ): + if not fill_level_target_profile: + return None + time_step_end -= timedelta(milliseconds=1) + lower, upper = None, None + for e in fill_level_target_profile.get_elements_in_range( + time_step_start, time_step_end + ): + if e.get_lower_limit() is not None and ( + lower is None or e.get_lower_limit() > lower + ): + lower = e.get_lower_limit() + if e.get_upper_limit() is not None and ( + upper is None or e.get_upper_limit() < upper + ): + upper = e.get_upper_limit() + if lower is None and upper is None: + return None + return NumberRangeWrapper(lower, upper) + + @staticmethod + def get_usage_forecast_for_timestep(usage_forecast, time_step_start, time_step_end): + if not usage_forecast: + return 0 + time_step_end -= timedelta(milliseconds=1) + usage = 0 + sub_profile = usage_forecast.sub_profile(time_step_start, time_step_end) + for element in sub_profile.get_elements(): + usage += element.get_usage() + return usage + + def find_best_plan(self, target_profile, diff_to_min_profile, diff_to_max_profile): + for i, ts in enumerate(self.timesteps): + ts.clear() + ts.set_targets( + target_profile.get_elements()[i], + diff_to_min_profile.get_elements()[i], + diff_to_max_profile.get_elements()[i], + ) + first_timestep_index = next( + (i for i, ts in enumerate(self.timesteps) if ts.get_system_description()), + -1, + ) + first_timestep = self.timesteps[first_timestep_index] + last_timestep = self.timesteps[-1] + state_zero = FrbcState(self.device_state, first_timestep) + state_zero.generate_next_timestep_states(first_timestep) + for i in range(first_timestep_index, len(self.timesteps) - 1): + current_timestep = self.timesteps[i] + next_timestep = self.timesteps[i + 1] + final_states = current_timestep.get_final_states_within_fill_level_target() + for frbc_state in final_states: + frbc_state.generate_next_timestep_states(next_timestep) + end_state = self.find_best_end_state( + last_timestep.get_final_states_within_fill_level_target() + ) + return self.convert_to_plan(first_timestep_index, end_state) + + @staticmethod + def find_best_end_state(states): + best_state = states[0] + for state in states[1:]: + if state.is_preferable_than(best_state).result: + best_state = state + return best_state + + def convert_to_plan(self, first_timestep_index_with_state, end_state): + energy = [None] * self.profile_metadata.get_nr_of_timesteps() + fill_level = [None] * self.profile_metadata.get_nr_of_timesteps() + actuators = [None] * self.profile_metadata.get_nr_of_timesteps() + insight_elements = [None] * self.profile_metadata.get_nr_of_timesteps() + state_selection_reasons = [""] * self.profile_metadata.get_nr_of_timesteps() + state = end_state + for i in range(self.profile_metadata.get_nr_of_timesteps() - 1, -1, -1): + if i >= first_timestep_index_with_state: + energy[i] = state.get_timestep_energy() + fill_level[i] = state.get_fill_level() + actuators[i] = state.get_actuator_configurations() + state_selection_reasons[i] = state.get_selection_reason().abbr + state = state.get_previous_state() + else: + energy[i] = 0 + fill_level[i] = 0.0 + actuators[i] = {} + insight_elements[i] = None + # energy[0] += self.device_state.get_energy_in_current_timestep().to(SI.JOULE).magnitude + # TODO: find alternative for SI.JOULE + return S2FrbcPlan( + False, + JouleProfile(self.profile_metadata, energy), + SoCProfile(self.profile_metadata, fill_level), + actuators, + ) + + def get_timestep_duration_seconds(self): + return self.timestep_duration_seconds diff --git a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py new file mode 100644 index 0000000..166dedf --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py @@ -0,0 +1,55 @@ +class SelectionReason: + CONGESTION_CONSTRAINT = "C" + ENERGY_TARGET = "E" + TARIFF_TARGET = "T" + MIN_ENERGY = "M" + NO_ALTERNATIVE = "_" + EMERGENCY_STATE = "!" + + +class SelectionResult: + def __init__(self, result: bool, reason: SelectionReason): + self.result = result + self.reason = reason + + def get_timestep(self): + return self.timestep + + def get_system_description(self): + return self.system_description + + def get_previous_state(self): + return self.previous_state + + def get_actuator_configurations(self): + return self.actuator_configurations + + def get_fill_level(self): + return self.fill_level + + def get_bucket(self): + return self.bucket + + def get_timestep_energy(self): + return self.timestep_energy + + def get_sum_squared_distance(self): + return self.sum_squared_distance + + def get_sum_squared_constraint_violation(self): + return self.sum_squared_constraint_violation + + def get_sum_energy_cost(self): + return self.sum_energy_cost + + def get_sum_squared_energy(self): + return self.sum_squared_energy + + def get_timer_elapse_map(self): + return self.timer_elapse_map + + def get_device_state(self): + return self.device_state + + def get_selection_reason(self): + return self.selection_reason diff --git a/flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py new file mode 100644 index 0000000..7fb705b --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py @@ -0,0 +1,41 @@ +# TODO: Is this the same as FRBCUsageForecast? + + +from datetime import datetime, timedelta +from s2python.frbc import FRBCUsageForecast, FRBCUsageForecastElement + + +class UsageForecastElement: + def __init__(self, start, end, usage_rate): + self.start = start + self.end = end + self.usage_rate = usage_rate + + def get_usage(self): + seconds = (self.end - self.start).total_seconds() + 1 + return seconds * self.usage_rate + + def split(self, date): + if self.date_in_element(date): + return [ + UsageForecastElement(self.start, date, self.usage_rate), + UsageForecastElement(date, self.end, self.usage_rate), + ] + return [] + + def date_in_element(self, date): + return self.start <= date <= self.end + + +class UsageForecastUtil: + @staticmethod + def from_storage_usage_profile(usage_forecast): + elements = [] + start = usage_forecast.get_start_time() + for element in usage_forecast.get_elements(): + end = start + timedelta(seconds=element.get_duration()) + elements.append( + UsageForecastElement(start, end, element.get_usage_rate_expected()) + ) + start = end + timedelta(milliseconds=1) + return elements diff --git a/flexmeasures_s2/profile_steering/s2_utils/__init__.py b/flexmeasures_s2/profile_steering/s2_utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py b/flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py new file mode 100644 index 0000000..1e47d5c --- /dev/null +++ b/flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py @@ -0,0 +1,24 @@ +class NumberRangeWrapper: + def __init__(self, start_of_range, end_of_range): + self.start_of_range = start_of_range + self.end_of_range = end_of_range + + def get_start_of_range(self): + return self.start_of_range + + def get_end_of_range(self): + return self.end_of_range + + def __eq__(self, other): + if not isinstance(other, NumberRangeWrapper): + return False + return ( + self.start_of_range == other.start_of_range + and self.end_of_range == other.end_of_range + ) + + def __hash__(self): + return hash((self.start_of_range, self.end_of_range)) + + def __str__(self): + return f"NumberRangeWrapper(startOfRange={self.start_of_range}, endOfRange={self.end_of_range})" diff --git a/flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py b/flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py new file mode 100644 index 0000000..b70b0c9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py @@ -0,0 +1,20 @@ +class S2ActuatorConfiguration: + def __init__(self, operation_mode_id, factor): + self.operation_mode_id = operation_mode_id + self.factor = factor + + def get_operation_mode_id(self): + return self.operation_mode_id + + def get_factor(self): + return self.factor + + def to_dict(self): + return {"operationModeId": self.operation_mode_id, "factor": self.factor} + + @staticmethod + def from_dict(data): + return S2ActuatorConfiguration(data["operationModeId"], data["factor"]) + + def __str__(self): + return f"S2ActuatorConfiguration [operationModeId={self.operation_mode_id}, factor={self.factor}]" diff --git a/flexmeasures_s2/scheduler/schemas.py b/flexmeasures_s2/scheduler/schemas.py index bed6480..03f98f2 100644 --- a/flexmeasures_s2/scheduler/schemas.py +++ b/flexmeasures_s2/scheduler/schemas.py @@ -3,8 +3,7 @@ from marshmallow import Schema, fields -class S2FlexModelSchema(Schema): - ... +class S2FlexModelSchema(Schema): ... class TNOTargetProfile(Schema): From 85c98f9d867f755fffaed21fef666f3bd818e36c Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 5 Feb 2025 21:55:33 +0100 Subject: [PATCH 07/33] Added the congestion point and root planner and a Device Planner class Signed-off-by: Vlad Iftime --- .../congestion_point_planner.py | 188 ++++++++++++++++++ .../frbc/device_planner/device_planner.py | 68 +++++++ .../{ => frbc}/s2_frbc_device_controller.py | 0 .../{ => frbc}/s2_frbc_device_planner.py | 0 .../{ => frbc}/s2_frbc_device_state.py | 0 .../s2_frbc_device_state_wrapper.py | 0 .../{ => frbc}/s2_frbc_insight_profile.py | 0 .../{ => frbc}/s2_frbc_instruction_profile.py | 0 .../device_planner/{ => frbc}/s2_frbc_plan.py | 0 .../frbc/selection_reason_result.py | 11 +- .../profile_steering/root_planner.py | 111 +++++++++++ 11 files changed, 376 insertions(+), 2 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/congestion_point_planner.py create mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_device_controller.py (100%) rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_device_planner.py (100%) rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_device_state.py (100%) rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_device_state_wrapper.py (100%) rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_insight_profile.py (100%) rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_instruction_profile.py (100%) rename flexmeasures_s2/profile_steering/frbc/device_planner/{ => frbc}/s2_frbc_plan.py (100%) create mode 100644 flexmeasures_s2/profile_steering/root_planner.py diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py new file mode 100644 index 0000000..8457aca --- /dev/null +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -0,0 +1,188 @@ +from datetime import datetime +from typing import List, Optional +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from .joule_range_profile import JouleRangeProfile +from .proposal import Proposal + +class CongestionPointPlanner: + def __init__(self, congestion_point_id: str, congestion_target: JouleRangeProfile): + """Initialize a congestion point planner. + + Args: + congestion_point_id: Unique identifier for this congestion point + congestion_target: Target profile with range constraints for this congestion point + """ + self.congestion_point_id = congestion_point_id + self.congestion_target = congestion_target + self.profile_metadata = congestion_target.get_profile_metadata() + + # Create an empty profile (using all zeros) + self.empty_profile = JouleProfile( + self.profile_metadata.get_profile_start(), + self.profile_metadata.get_timestep_duration(), + elements=[0] * self.profile_metadata.nr_of_timesteps + ) + + # List of device controllers that can be used for planning + self.devices = [] + + # Keep track of accepted and latest plans + self.accepted_plan = self.empty_profile + self.latest_plan = self.empty_profile + + def add_device(self, device): + """Add a device controller to this congestion point.""" + self.devices.append(device) + + def is_storage_available(self) -> bool: + """Check if storage is available at this congestion point.""" + # For now, always assume storage is available + return True + + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + """Create an initial plan for this congestion point. + + Args: + plan_due_by_date: The date by which the plan must be ready + + Returns: + A JouleProfile representing the initial plan + """ + current_planning = self.empty_profile + + # Aggregate initial plans from all devices + for device in self.devices: + current_planning = current_planning.add(device.create_initial_planning(plan_due_by_date)) + + # Check if the current planning is within the congestion target range + if self.congestion_target.is_within_range(current_planning): + return current_planning + + i = 0 + best_proposal = None + + max_priority_class = self.max_priority_class() + min_priority_class = self.min_priority_class() + + # Iterate over priority classes + for priority_class in range(min_priority_class, max_priority_class + 1): + print(f"Optimizing priority class: {priority_class}") + while True: + best_proposal = None + diff_to_max = self.congestion_target.difference_with_max_value(current_planning) + diff_to_min = self.congestion_target.difference_with_min_value(current_planning) + + # Try to get improved plans from each device controller + for device in self.devices: + if device.get_priority_class() <= priority_class: + try: + proposal = device.create_improved_planning( + self.empty_profile, # Assuming empty global target + diff_to_max, + diff_to_min, + plan_due_by_date + ) + print(f"congestion impr for '{device.get_device_id()}': {proposal.get_congestion_improvement_value()}") + if best_proposal is None or proposal.get_congestion_improvement_value() > best_proposal.get_congestion_improvement_value(): + best_proposal = proposal + except Exception as e: + print(f"Error getting proposal from device {device.get_device_id()}: {e}") + continue + + if best_proposal is None or best_proposal.get_congestion_improvement_value() <= 0: + break + + # Update the current planning based on the best proposal + current_planning = current_planning.subtract(best_proposal.get_old_plan()).add(best_proposal.get_proposed_plan()) + best_proposal.get_origin().accept_proposal(best_proposal) + i += 1 + + print(f"Initial planning '{self.congestion_point_id}': best controller '{best_proposal.get_origin().get_device_id()}' with congestion improvement of {best_proposal.get_congestion_improvement_value()}. Iteration {i}.") + + if i >= self.MAX_ITERATIONS: + break + + return current_planning + + def create_improved_planning( + self, + difference_profile: JouleProfile, + target_metadata: any, + priority_class: int, + plan_due_by_date: datetime + ) -> Optional[Proposal]: + """Create an improved plan based on the difference profile. + + Args: + difference_profile: The difference between target and current planning + target_metadata: Metadata about the target profile + priority_class: Priority class for this planning iteration + plan_due_by_date: The date by which the plan must be ready + + Returns: + A Proposal object if an improvement was found, None otherwise + """ + best_proposal = None + + current_planning = self.get_current_planning() + + diff_to_max_value = self.congestion_target.difference_with_max_value(current_planning) + diff_to_min_value = self.congestion_target.difference_with_min_value(current_planning) + + # Try to get improved plans from each device controller + for device in self.devices: + if device.get_priority_class() <= priority_class: + try: + # Get an improved plan from this device + proposal = device.create_improved_planning( + difference_profile, + diff_to_max_value, + diff_to_min_value, + plan_due_by_date + ) + if proposal.get_congestion_improvement_value() < 0: + print(f"{device.get_device_name()}, congestion improvement: {proposal.get_congestion_improvement_value()}") + + if best_proposal is None or proposal.is_preferred_to(best_proposal): + best_proposal = proposal + except Exception as e: + print(f"Error getting proposal from device {device.get_device_id()}: {e}") + continue + + if best_proposal is None: + print(f"CP '{self.congestion_point_id}': No proposal available at current priority level ({priority_class})") + else: + if best_proposal.get_congestion_improvement_value() == float('-inf'): + raise ValueError("Invalid proposal with negative infinity improvement value") + + print(f"CP '{self.congestion_point_id}': Selected best controller '{best_proposal.get_origin().get_device_name()}' with improvement of {best_proposal.get_global_improvement_value()}.") + + return best_proposal + + def get_current_planning(self) -> JouleProfile: + """Get the current planning profile.""" + # Return the latest accepted plan as the current planning + current_planning = self.empty_profile + for device in self.devices: + current_planning = current_planning.add(device.get_current_profile()) + return current_planning + + def add_device_controller(self, device): + """Add a device controller to this congestion point.""" + self.devices.append(device) + + def get_device_controllers(self) -> List[DevicePlanner]: + """Get the list of device controllers.""" + return self.devices + + def max_priority_class(self) -> int: + """Get the maximum priority class among all devices.""" + if not self.devices: + return 1 + return max(device.get_priority_class() for device in self.devices) + + def min_priority_class(self) -> int: + """Get the minimum priority class among all devices.""" + if not self.devices: + return 1 + return min(device.get_priority_class() for device in self.devices) diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py new file mode 100644 index 0000000..6b8b4b3 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py @@ -0,0 +1,68 @@ +from datetime import datetime +from typing import Optional +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.proposal import Proposal + +class DevicePlanner: + def get_device_id(self) -> str: + """Get the device ID.""" + raise NotImplementedError("This method should be overridden by subclasses.") + + def get_device_name(self) -> str: + """Get the device name.""" + raise NotImplementedError("This method should be overridden by subclasses.") + + def get_connection_id(self) -> str: + """Get the connection ID.""" + raise NotImplementedError("This method should be overridden by subclasses.") + + def create_improved_planning( + self, + cluster_diff_profile: JouleProfile, + diff_to_max_profile: JouleProfile, + diff_to_min_profile: JouleProfile, + plan_due_by_date: datetime + ) -> Proposal: + """Create an improved planning proposal. + + Args: + cluster_diff_profile: The difference profile for the cluster + diff_to_max_profile: The difference to the maximum profile + diff_to_min_profile: The difference to the minimum profile + plan_due_by_date: The date by which the plan must be ready + + Returns: + A Proposal object representing the improved plan + """ + raise NotImplementedError("This method should be overridden by subclasses.") + + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + """Create an initial planning profile. + + Args: + plan_due_by_date: The date by which the plan must be ready + + Returns: + A JouleProfile representing the initial plan + """ + raise NotImplementedError("This method should be overridden by subclasses.") + + def accept_proposal(self, accepted_proposal: Proposal): + """Accept a proposal and update the device's planning. + + Args: + accepted_proposal: The proposal to accept + """ + raise NotImplementedError("This method should be overridden by subclasses.") + + def get_current_profile(self) -> JouleProfile: + """Get the current profile of the device.""" + raise NotImplementedError("This method should be overridden by subclasses.") + + def get_device_plan(self) -> Optional[JouleProfile]: + """Get the device plan.""" + raise NotImplementedError("This method should be overridden by subclasses.") + + def get_priority_class(self) -> int: + """Get the priority class of the device.""" + raise NotImplementedError("This method should be overridden by subclasses.") diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_controller.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_controller.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_planner.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_device_state_wrapper.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_insight_profile.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_insight_profile.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_instruction_profile.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/s2_frbc_plan.py rename to flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py diff --git a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py index 166dedf..e1447c0 100644 --- a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py +++ b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py @@ -8,10 +8,17 @@ class SelectionReason: class SelectionResult: - def __init__(self, result: bool, reason: SelectionReason): + def __init__(self, result: bool, reason: SelectionReason, timestep: int, system_description: str, previous_state: str, actuator_configurations: str, fill_level: float, bucket: str, timestep_energy: float): self.result = result self.reason = reason - + self.timestep = timestep + self.system_description = system_description + self.previous_state = previous_state + self.actuator_configurations = actuator_configurations + self.fill_level = fill_level + self.bucket = bucket + self.timestep_energy = timestep_energy + def get_timestep(self): return self.timestep diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py new file mode 100644 index 0000000..5264ed9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -0,0 +1,111 @@ +from typing import List, Any +from datetime import datetime +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from .congestion_point_planner import CongestionPointPlanner +from .proposal import Proposal + +class RootPlanner: + MAX_ITERATIONS = 1000 + + def __init__(self, target: Any, energy_iteration_criterion: float, cost_iteration_criterion: float, context: Any): + """ + target: An object that provides a profile. + It must support a method get_profile_start(), + have attributes timestep_duration and nr_of_timesteps, + and (for optimization purposes) support a subtract() method. + context: In a full implementation, this might be an executor or similar. Here it is passed along. + """ + self.context = context + self.target = self.remove_null_values(target) + self.energy_iteration_criterion = energy_iteration_criterion + self.cost_iteration_criterion = cost_iteration_criterion + # Create an empty JouleProfile. + # We assume that target exposes get_profile_start(), timestep_duration and nr_of_timesteps. + self.empty_profile = JouleProfile( + self.target.get_profile_start(), + self.target.timestep_duration, + elements=[0] * self.target.nr_of_timesteps + ) + self.cp_controllers: List[CongestionPointPlanner] = [] + self.root_ctrl_planning = self.empty_profile + + def remove_null_values(self, target: Any) -> Any: + # Stub: simply return the target. + # In a full implementation, you would remove or replace null elements. + return target + + def add_congestion_point_controller(self, cpc: CongestionPointPlanner): + self.cp_controllers.append(cpc) + + def get_congestion_point_controller(self, cp_id: str) -> CongestionPointPlanner: + for cp in self.cp_controllers: + if cp.congestion_point_id == cp_id: + return cp + return None + + def plan(self, plan_due_by_date: datetime, optimize_for_target: bool, max_priority_class_external: int, multithreaded: bool = False): + # Compute an initial plan by summing each congestion point's initial planning. + self.root_ctrl_planning = self.empty_profile + for cpc in self.cp_controllers: + initial_plan = cpc.create_initial_planning(plan_due_by_date) + self.root_ctrl_planning = self.root_ctrl_planning.add(initial_plan) + + if not optimize_for_target: + return + + if not self.cp_controllers: + return + + # Determine maximum and minimum priority classes across congestion points. + max_priority_class = max(cpc.max_priority_class() for cpc in self.cp_controllers) + min_priority_class = min(cpc.min_priority_class() for cpc in self.cp_controllers) + + # Iterate over the priority classes. + for priority_class in range(min_priority_class, min(max_priority_class, max_priority_class_external) + 1): + i = 0 + best_proposal = None + + # Simulate a do-while loop: we run at least once. + while True: + # Compute the difference profile + difference_profile = self.target.subtract(self.root_ctrl_planning) + best_proposal = None + + # Get proposals from each congestion point controller + for cpc in self.cp_controllers: + try: + proposal = cpc.create_improved_planning( + difference_profile, + self.target.get_profile_metadata(), + priority_class, + plan_due_by_date + ) + if proposal is not None: + if best_proposal is None or proposal.is_preferred_to(best_proposal): + best_proposal = proposal + except Exception as e: + print(f"Error getting proposal from controller: {e}") + continue + + if best_proposal is None: + # No proposal could be generated; exit inner loop. + break + + # Update the root controller's planning based on the best proposal. + self.root_ctrl_planning = self.root_ctrl_planning.subtract(best_proposal.get_old_plan()) + self.root_ctrl_planning = self.root_ctrl_planning.add(best_proposal.get_proposed_plan()) + + # Let the origin device/controller accept the proposal. + best_proposal.get_origin().accept_proposal(best_proposal) + i += 1 + print(f"Root controller: selected best controller '{best_proposal.get_origin().get_device_name()}' with global energy impr {best_proposal.get_global_improvement_value()}, cost impr {best_proposal.get_cost_improvement_value()}, congestion impr {best_proposal.get_congestion_improvement_value()}, iteration {i}.") + + # Check stopping criteria: if improvement values are below thresholds or max iterations reached. + if ((best_proposal.get_global_improvement_value() <= self.energy_iteration_criterion and + best_proposal.get_cost_improvement_value() <= self.cost_iteration_criterion) + or i >= self.MAX_ITERATIONS): + break + + print(f"Optimizing priority class {priority_class} was done after {i} iterations.") + if i >= self.MAX_ITERATIONS: + print(f"Warning: Optimization stopped due to iteration limit. Priority class: {priority_class}, Iterations: {i}") From b95a3a91b968cfce5b9b249652f25864a7db3768 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 7 Feb 2025 13:22:07 +0100 Subject: [PATCH 08/33] Chore: type hints for easier debugging; removed profile insight, add a couple of wrappers Signed-off-by: Vlad Iftime --- .../device_planner/__init__.py | 0 .../common/device_planner/device_plan.py | 48 ++++++++++ .../device_planner/device_planner.py | 0 .../common/profile_metadata.py | 92 +++++++++++++++++++ .../frbc/s2_frbc_insight_profile.py | 30 ------ .../frbc/frbc_operation_mode_wrapper.py | 47 ++++++++++ .../profile_steering/frbc/frbc_state.py | 4 +- .../profile_steering/frbc/frbc_timestep.py | 67 +++++++------- .../frbc/operation_mode_profile_tree.py | 44 +++++---- .../frbc => }/s2_frbc_device_controller.py | 48 +++++----- .../frbc => }/s2_frbc_device_planner.py | 39 ++++---- .../frbc => }/s2_frbc_device_state.py | 30 +++--- .../frbc => }/s2_frbc_device_state_wrapper.py | 81 ++++++++-------- .../frbc => }/s2_frbc_instruction_profile.py | 7 +- .../{device_planner/frbc => }/s2_frbc_plan.py | 1 - 15 files changed, 350 insertions(+), 188 deletions(-) rename flexmeasures_s2/profile_steering/{frbc => common}/device_planner/__init__.py (100%) create mode 100644 flexmeasures_s2/profile_steering/common/device_planner/device_plan.py rename flexmeasures_s2/profile_steering/{frbc => common}/device_planner/device_planner.py (100%) create mode 100644 flexmeasures_s2/profile_steering/common/profile_metadata.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py create mode 100644 flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py rename flexmeasures_s2/profile_steering/frbc/{device_planner/frbc => }/s2_frbc_device_controller.py (77%) rename flexmeasures_s2/profile_steering/frbc/{device_planner/frbc => }/s2_frbc_device_planner.py (80%) rename flexmeasures_s2/profile_steering/frbc/{device_planner/frbc => }/s2_frbc_device_state.py (64%) rename flexmeasures_s2/profile_steering/frbc/{device_planner/frbc => }/s2_frbc_device_state_wrapper.py (75%) rename flexmeasures_s2/profile_steering/frbc/{device_planner/frbc => }/s2_frbc_instruction_profile.py (87%) rename flexmeasures_s2/profile_steering/frbc/{device_planner/frbc => }/s2_frbc_plan.py (92%) diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py b/flexmeasures_s2/profile_steering/common/device_planner/__init__.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py rename to flexmeasures_s2/profile_steering/common/device_planner/__init__.py diff --git a/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py b/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py new file mode 100644 index 0000000..3d072df --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py @@ -0,0 +1,48 @@ +from typing import Optional, List +from datetime import datetime +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile + +class DevicePlan: + def __init__( + self, + device_id: str, + device_name: str, + connection_id: str, + energy_profile: JouleProfile, + fill_level_profile: Optional[JouleProfile], + instruction_profile: S2FrbcInstructionProfile, + ): + self.device_id = device_id + self.device_name = device_name + self.connection_id = connection_id + self.energy_profile = energy_profile + self.fill_level_profile = fill_level_profile + self.instruction_profile = instruction_profile + + def get_device_id(self) -> str: + return self.device_id + + def get_device_name(self) -> str: + return self.device_name + + def get_connection_id(self) -> str: + return self.connection_id + + def get_energy_profile(self) -> JouleProfile: + return self.energy_profile + + def get_fill_level_profile(self) -> Optional[JouleProfile]: + return self.fill_level_profile + + def get_instruction_profile(self) -> S2FrbcInstructionProfile: + return self.instruction_profile + + + def __str__(self) -> str: + return ( + f"DevicePlan(device_id={self.device_id}, device_name={self.device_name}, " + f"connection_id={self.connection_id}, energy_profile={self.energy_profile}, " + f"fill_level_profile={self.fill_level_profile}, instruction_profile={self.instruction_profile}, " + f"insights_profile={self.insights_profile})" + ) diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/common/device_planner/device_planner.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py rename to flexmeasures_s2/profile_steering/common/device_planner/device_planner.py diff --git a/flexmeasures_s2/profile_steering/common/profile_metadata.py b/flexmeasures_s2/profile_steering/common/profile_metadata.py new file mode 100644 index 0000000..db09ce3 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/profile_metadata.py @@ -0,0 +1,92 @@ +from datetime import datetime, timedelta +from typing import Optional + +class ProfileMetadata: + NR_OF_TIMESTEPS_KEY = "nrOfTimesteps" + TIMESTEP_DURATION_KEY = "timestepDurationMs" + PROFILE_START_KEY = "profileStart" + + def __init__(self, profile_start: datetime, timestep_duration: timedelta, nr_of_timesteps: int): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.nr_of_timesteps = nr_of_timesteps + self.profile_end = profile_start + timestep_duration * nr_of_timesteps + self.profile_duration = self.profile_end - self.profile_start + + def get_profile_start(self) -> datetime: + return self.profile_start + + def get_timestep_duration(self) -> timedelta: + return self.timestep_duration + + def get_nr_of_timesteps(self) -> int: + return self.nr_of_timesteps + + def get_profile_end(self) -> datetime: + return self.profile_end + + def get_profile_duration(self) -> timedelta: + return self.profile_duration + + def get_profile_start_at_timestep(self, i: int) -> datetime: + if i >= self.nr_of_timesteps or i < 0: + raise ValueError(f"Expected i to be between 0 <= i < {self.nr_of_timesteps} but was {i}") + return self.profile_start + self.timestep_duration * i + + def get_starting_step_nr(self, instant: datetime) -> int: + if instant < self.profile_start: + return -1 + elif instant >= self.profile_end: + return self.nr_of_timesteps + else: + duration_between_secs = (instant - self.profile_start).total_seconds() + timestep_duration_secs = self.timestep_duration.total_seconds() + return int(duration_between_secs // timestep_duration_secs) + + def is_aligned_with(self, other: 'ProfileMetadata') -> bool: + return (self.timestep_duration == other.timestep_duration and + (abs((self.profile_start - other.profile_start).total_seconds()) % + self.timestep_duration.total_seconds()) == 0) + + def to_dict(self) -> dict: + return { + self.PROFILE_START_KEY: int(self.profile_start.timestamp() * 1000), + self.TIMESTEP_DURATION_KEY: int(self.timestep_duration.total_seconds() * 1000), + self.NR_OF_TIMESTEPS_KEY: self.nr_of_timesteps + } + + @staticmethod + def from_dict(data: dict) -> 'ProfileMetadata': + profile_start = datetime.fromtimestamp(data[ProfileMetadata.PROFILE_START_KEY] / 1000) + timestep_duration = timedelta(milliseconds=data[ProfileMetadata.TIMESTEP_DURATION_KEY]) + nr_of_timesteps = data[ProfileMetadata.NR_OF_TIMESTEPS_KEY] + return ProfileMetadata(profile_start, timestep_duration, nr_of_timesteps) + + def subprofile(self, new_start_date: datetime) -> 'ProfileMetadata': + if new_start_date < self.profile_start: + raise ValueError("The new start date should be after the current start date") + new_start_date = self.next_aligned_date(new_start_date, self.timestep_duration) + skipped_steps = int((new_start_date - self.profile_start).total_seconds() // self.timestep_duration.total_seconds()) + nr_of_elements = max(0, self.nr_of_timesteps - skipped_steps) + return ProfileMetadata(new_start_date, self.timestep_duration, nr_of_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> 'ProfileMetadata': + return ProfileMetadata(self.profile_start, self.timestep_duration, nr_of_elements) + + @staticmethod + def next_aligned_date(date: datetime, timestep_duration: timedelta) -> datetime: + # Align the date to the next timestep + remainder = (date - datetime.min).total_seconds() % timestep_duration.total_seconds() + if remainder == 0: + return date + return date + timedelta(seconds=(timestep_duration.total_seconds() - remainder)) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, ProfileMetadata): + return False + return (self.nr_of_timesteps == other.nr_of_timesteps and + self.profile_start == other.profile_start and + self.timestep_duration == other.timestep_duration) + + def __hash__(self) -> int: + return hash((self.nr_of_timesteps, self.profile_start, self.timestep_duration)) diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py b/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py deleted file mode 100644 index 7d69deb..0000000 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py +++ /dev/null @@ -1,30 +0,0 @@ -from typing import List, Dict - - -class S2FrbcInsightsProfile: - def __init__( - self, profile_metadata, elements: List["S2FrbcInsightsProfile.Element"] - ): - self.profile_metadata = profile_metadata - self.elements = elements - - def default_value(self): - return None - - def build_profile_type(self, profile_metadata, elements): - return S2FrbcInsightsProfile(profile_metadata, elements) - - def to_insights_map(self) -> Dict[str, List[float]]: - insights_map = { - "fill_level_end_of_step": [ - e.get_fill_level_end_of_step() if e else None for e in self.elements - ] - } - return insights_map - - class Element: - def __init__(self, fill_level_end_of_step: float): - self.fill_level_end_of_step = fill_level_end_of_step - - def get_fill_level_end_of_step(self) -> float: - return self.fill_level_end_of_step diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py new file mode 100644 index 0000000..f852340 --- /dev/null +++ b/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py @@ -0,0 +1,47 @@ +from typing import List +from s2_utils.number_range_wrapper import NumberRangeWrapper +from s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper + +class FrbcOperationModeElementWrapper: + def __init__(self, frbc_operation_mode_element): + self.fill_rate = NumberRangeWrapper( + frbc_operation_mode_element.get_fill_rate().get_start_of_range(), + frbc_operation_mode_element.get_fill_rate().get_end_of_range() + ) + self.power_ranges = [ + NumberRangeWrapper(pr.get_start_of_range(), pr.get_end_of_range()) + for pr in frbc_operation_mode_element.get_power_ranges() + ] + + def get_fill_rate(self) -> NumberRangeWrapper: + return self.fill_rate + + def get_power_ranges(self) -> List[NumberRangeWrapper]: + return self.power_ranges + + +class FrbcOperationModeWrapper: + def __init__(self, frbc_operation_mode): + self.id = frbc_operation_mode.get_id() + self.diagnostic_label = frbc_operation_mode.get_diagnostic_label() + self.abnormal_condition_only = frbc_operation_mode.get_abnormal_condition_only() + self.elements = [ + FrbcOperationModeElementWrapper(element) + for element in frbc_operation_mode.get_elements() + ] + self.uses_factor = self.calculate_uses_factor() + + def calculate_uses_factor(self) -> bool: + for element in self.elements: + if abs(element.get_fill_rate().get_start_of_range() - element.get_fill_rate().get_end_of_range()) > S2FrbcDeviceStateWrapper.epsilon: + return True + for power_range in element.get_power_ranges(): + if abs(power_range.get_start_of_range() - power_range.get_end_of_range()) > S2FrbcDeviceStateWrapper.epsilon: + return True + return False + + def get_elements(self) -> List[FrbcOperationModeElementWrapper]: + return self.elements + + def is_uses_factor(self) -> bool: + return self.uses_factor diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/frbc/frbc_state.py index f4c4f6b..1ba7fa8 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/frbc/frbc_state.py @@ -4,8 +4,8 @@ TargetProfile, FRBCSystemDescription, ) -from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration -from Python.profile_steering.frbc.device_planner.s2_frbc_device_state_wrapper import ( +from flexmeasures_s2.profile_steering.s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) from frbc_timestep import FrbcTimestep diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py index 4d4fb9d..761e1de 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py @@ -1,4 +1,5 @@ from datetime import datetime, timedelta +from typing import List, Optional, Union from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour from frbc_state import FrbcState, SelectionReason @@ -10,30 +11,30 @@ def __init__( end_date: datetime, system_description: FRBCSystemDescription, leakage_behaviour: FRBCLeakageBehaviour, - fill_level_target: float, + fill_level_target: Optional[float], forecasted_fill_level_usage: float, computational_parameters: object, ): - self.nr_of_buckets = computational_parameters.get_nr_of_buckets() - self.start_date = start_date - self.end_date = end_date - self.duration = end_date - start_date - self.system_description = system_description - self.leakage_behaviour = leakage_behaviour - self.fill_level_target = fill_level_target - self.forecasted_fill_level_usage = forecasted_fill_level_usage - self.state_list = [None] * (self.nr_of_buckets + 1) - self.emergency_state = None - - def get_nr_of_buckets(self): + self.nr_of_buckets: int = computational_parameters.get_nr_of_buckets() + self.start_date: datetime = start_date + self.end_date: datetime = end_date + self.duration: timedelta = end_date - start_date + self.system_description: FRBCSystemDescription = system_description + self.leakage_behaviour: FRBCLeakageBehaviour = leakage_behaviour + self.fill_level_target: Optional[float] = fill_level_target + self.forecasted_fill_level_usage: float = forecasted_fill_level_usage + self.state_list: List[Optional[FrbcState]] = [None] * (self.nr_of_buckets + 1) + self.emergency_state: Optional[FrbcState] = None + + def get_nr_of_buckets(self) -> int: return self.nr_of_buckets - def set_targets(self, target, min_constraint, max_constraint): + def set_targets(self, target: float, min_constraint: float, max_constraint: float) -> None: self.target = target self.min_constraint = min_constraint self.max_constraint = max_constraint - def add_state(self, state: FrbcState): + def add_state(self, state: FrbcState) -> None: if state.is_within_fill_level_range(): stored_state = self.state_list[state.get_bucket()] if stored_state is None: @@ -55,50 +56,50 @@ def add_state(self, state: FrbcState): self.emergency_state = state state.set_selection_reason(SelectionReason.EMERGENCY_STATE) - def add_all_states(self, states): + def add_all_states(self, states: List[FrbcState]) -> None: for state in states: self.add_state(state) - def get_start_date(self): + def get_start_date(self) -> datetime: return self.start_date - def get_end_date(self): + def get_end_date(self) -> datetime: return self.end_date - def get_system_description(self): + def get_system_description(self) -> FRBCSystemDescription: return self.system_description - def get_leakage_behaviour(self): + def get_leakage_behaviour(self) -> FRBCLeakageBehaviour: return self.leakage_behaviour - def get_duration(self): + def get_duration(self) -> timedelta: return self.duration - def get_duration_seconds(self): + def get_duration_seconds(self) -> int: return int(self.duration.total_seconds()) - def get_target(self): + def get_target(self) -> float: return self.target - def get_min_constraint(self): + def get_min_constraint(self) -> float: return self.min_constraint - def get_max_constraint(self): + def get_max_constraint(self) -> float: return self.max_constraint - def get_fill_level_target(self): + def get_fill_level_target(self) -> Optional[float]: return self.fill_level_target - def get_state_list(self): + def get_state_list(self) -> List[Optional[FrbcState]]: return self.state_list - def get_final_states(self): + def get_final_states(self) -> List[FrbcState]: final_states = [state for state in self.state_list if state is not None] if not final_states: return [self.emergency_state] return final_states - def get_final_states_within_fill_level_target(self): + def get_final_states_within_fill_level_target(self) -> List[FrbcState]: final_states = self.get_final_states() if self.fill_level_target is None: return final_states @@ -112,7 +113,7 @@ def get_final_states_within_fill_level_target(self): ) return [best_state] - def state_is_within_fill_level_target_range(self, state): + def state_is_within_fill_level_target_range(self, state: FrbcState) -> bool: if self.fill_level_target is None: return True return ( @@ -123,7 +124,7 @@ def state_is_within_fill_level_target_range(self, state): or state.get_fill_level() <= self.fill_level_target.get_end_of_range() ) - def get_fill_level_target_distance(self, state): + def get_fill_level_target_distance(self, state: FrbcState) -> float: if ( self.fill_level_target.get_end_of_range() is None or state.get_fill_level() < self.fill_level_target.get_start_of_range() @@ -132,9 +133,9 @@ def get_fill_level_target_distance(self, state): else: return state.get_fill_level() - self.fill_level_target.get_end_of_range() - def get_forecasted_usage(self): + def get_forecasted_usage(self) -> float: return self.forecasted_fill_level_usage - def clear(self): + def clear(self) -> None: self.state_list = [None] * len(self.state_list) self.emergency_state = None diff --git a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py index 71a75f9..d6c8665 100644 --- a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py @@ -1,19 +1,24 @@ from datetime import datetime, timedelta +from typing import List, Optional, Any from frbc_timestep import FrbcTimestep -from Python.profile_steering.frbc.device_planner.s2_frbc_device_state_wrapper import ( +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) -from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration -from frbc_state import FrbcState -from fill_level_target_util import FillLevelTargetUtil -from usage_forecast_util import UsageForecastUtil -from s2_utils.number_range_wrapper import NumberRangeWrapper -from device_planner.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.frbc.fill_level_target_util import FillLevelTargetUtil +from flexmeasures_s2.profile_steering.frbc.usage_forecast_util import UsageForecastUtil +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper +from flexmeasures_s2.profile_steering.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from common.joule_profile import JouleProfile from common.soc_profile import SoCProfile +from pint import UnitRegistry -# TODO: Add S2FrbcInsightsProfile? +SI = UnitRegistry() + +# TODO: Add S2FrbcInsightsProfile?->Update 08-02-2025: Not needed for now class OperationModeProfileTree: @@ -29,10 +34,10 @@ def __init__( self.timestep_duration_seconds = int( profile_metadata.get_timestep_duration().total_seconds() ) - self.timesteps = [] + self.timesteps: List[FrbcTimestep] = [] self.generate_timesteps() - def generate_timesteps(self): + def generate_timesteps(self) -> None: time_step_start = self.profile_metadata.get_profile_start() for i in range(self.profile_metadata.get_nr_of_timesteps()): time_step_end = ( @@ -93,7 +98,7 @@ def generate_timesteps(self): time_step_start = time_step_end @staticmethod - def get_latest_before(before, select_from, get_date_time): + def get_latest_before(before: datetime, select_from: List[Any], get_date_time: Any) -> Optional[Any]: latest_before = None latest_before_date_time = None if select_from: @@ -110,8 +115,8 @@ def get_latest_before(before, select_from, get_date_time): @staticmethod def get_fill_level_target_for_timestep( - fill_level_target_profile, time_step_start, time_step_end - ): + fill_level_target_profile: Optional[Any], time_step_start: datetime, time_step_end: datetime + ) -> Optional[NumberRangeWrapper]: if not fill_level_target_profile: return None time_step_end -= timedelta(milliseconds=1) @@ -132,7 +137,7 @@ def get_fill_level_target_for_timestep( return NumberRangeWrapper(lower, upper) @staticmethod - def get_usage_forecast_for_timestep(usage_forecast, time_step_start, time_step_end): + def get_usage_forecast_for_timestep(usage_forecast: Optional[Any], time_step_start: datetime, time_step_end: datetime) -> float: if not usage_forecast: return 0 time_step_end -= timedelta(milliseconds=1) @@ -142,7 +147,7 @@ def get_usage_forecast_for_timestep(usage_forecast, time_step_start, time_step_e usage += element.get_usage() return usage - def find_best_plan(self, target_profile, diff_to_min_profile, diff_to_max_profile): + def find_best_plan(self, target_profile: Any, diff_to_min_profile: Any, diff_to_max_profile: Any) -> S2FrbcPlan: for i, ts in enumerate(self.timesteps): ts.clear() ts.set_targets( @@ -170,14 +175,14 @@ def find_best_plan(self, target_profile, diff_to_min_profile, diff_to_max_profil return self.convert_to_plan(first_timestep_index, end_state) @staticmethod - def find_best_end_state(states): + def find_best_end_state(states: List[FrbcState]) -> FrbcState: best_state = states[0] for state in states[1:]: if state.is_preferable_than(best_state).result: best_state = state return best_state - def convert_to_plan(self, first_timestep_index_with_state, end_state): + def convert_to_plan(self, first_timestep_index_with_state: int, end_state: FrbcState) -> S2FrbcPlan: energy = [None] * self.profile_metadata.get_nr_of_timesteps() fill_level = [None] * self.profile_metadata.get_nr_of_timesteps() actuators = [None] * self.profile_metadata.get_nr_of_timesteps() @@ -196,8 +201,7 @@ def convert_to_plan(self, first_timestep_index_with_state, end_state): fill_level[i] = 0.0 actuators[i] = {} insight_elements[i] = None - # energy[0] += self.device_state.get_energy_in_current_timestep().to(SI.JOULE).magnitude - # TODO: find alternative for SI.JOULE + energy[0] += self.device_state.get_energy_in_current_timestep().to(SI.joule).magnitude return S2FrbcPlan( False, JouleProfile(self.profile_metadata, energy), @@ -205,5 +209,5 @@ def convert_to_plan(self, first_timestep_index_with_state, end_state): actuators, ) - def get_timestep_duration_seconds(self): + def get_timestep_duration_seconds(self) -> int: return self.timestep_duration_seconds diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py similarity index 77% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py index a79f65f..11f4b80 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py @@ -1,29 +1,32 @@ from datetime import datetime +from typing import Optional, List from common.joule_profile import JouleProfile from common.target_profile import TargetProfile from common.proposal import Proposal - -from operation_mode_profile_tree import OperationModeProfileTree -from s2_frbc_plan import S2FrbcPlan -from s2_frbc_instruction_profile import S2FrbcInstructionProfile - +from common.profile_metadata import ProfileMetadata +from frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper +from frbc.operation_mode_profile_tree import OperationModeProfileTree +from frbc.s2_frbc_plan import S2FrbcPlan +from frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile +from frbc.s2_frbc_device_state import S2FrbcDeviceState +from common.device_planner.device_plan import DevicePlan class S2FrbcDeviceController: - def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): + def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: ProfileMetadata, plan_due_by_date: datetime): self.s2_frbc_state = s2_frbc_state self.profile_metadata = profile_metadata self.zero_profile = JouleProfile(profile_metadata, 0) self.null_profile = JouleProfile(profile_metadata, None) - self.state_tree = None + self.state_tree: Optional[OperationModeProfileTree] = None if self.is_storage_available(s2_frbc_state): self.state_tree = OperationModeProfileTree( s2_frbc_state, profile_metadata, plan_due_by_date ) self.priority_class = s2_frbc_state.get_priority_class() - self.latest_plan = None - self.accepted_plan = None + self.latest_plan: Optional[S2FrbcPlan] = None + self.accepted_plan: Optional[S2FrbcPlan] = None - def is_storage_available(self, storage_state): + def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: latest_before_first_ptu = OperationModeProfileTree.get_latest_before( self.profile_metadata.get_profile_start(), storage_state.get_system_descriptions(), @@ -50,18 +53,18 @@ def is_storage_available(self, storage_state): and active_and_upcoming_system_descriptions_has_active_storage ) - def get_device_id(self): + def get_device_id(self) -> str: return self.s2_frbc_state.get_device_id() - def get_connection_id(self): + def get_connection_id(self) -> str: return self.s2_frbc_state.get_connection_id() - def get_device_name(self): + def get_device_name(self) -> str: return self.s2_frbc_state.get_device_name() def create_improved_planning( - self, diff_to_global_target, diff_to_max, diff_to_min, plan_due_by_date - ): + self, diff_to_global_target: TargetProfile, diff_to_max: JouleProfile, diff_to_min: JouleProfile, plan_due_by_date: datetime + ) -> Proposal: target = diff_to_global_target.add(self.accepted_plan.get_energy()) max_profile = diff_to_max.add(self.accepted_plan.get_energy()) min_profile = diff_to_min.add(self.accepted_plan.get_energy()) @@ -81,10 +84,9 @@ def create_improved_planning( ) return proposal - def create_initial_planning(self, plan_due_by_date): + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: if self.is_storage_available(self.s2_frbc_state): self.latest_plan = self.state_tree.find_best_plan( - # TODO: make an util or make a new class TargetProfile.null_profile(self.profile_metadata), self.null_profile, self.null_profile, @@ -94,7 +96,7 @@ def create_initial_planning(self, plan_due_by_date): self.accepted_plan = self.latest_plan return self.latest_plan.get_energy() - def accept_proposal(self, accepted_proposal): + def accept_proposal(self, accepted_proposal: Proposal) -> None: if accepted_proposal.get_origin() != self: raise ValueError( f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." @@ -111,13 +113,13 @@ def accept_proposal(self, accepted_proposal): ) self.accepted_plan = self.latest_plan - def get_current_profile(self): + def get_current_profile(self) -> JouleProfile: return self.accepted_plan.get_energy() - def get_latest_plan(self): + def get_latest_plan(self) -> Optional[S2FrbcPlan]: return self.latest_plan - def get_device_plan(self): + def get_device_plan(self) -> DevicePlan: return DevicePlan( self.get_device_id(), self.get_device_name(), @@ -131,7 +133,7 @@ def get_device_plan(self): ) @staticmethod - def convert_plan_to_instructions(profile_metadata, device_plan): + def convert_plan_to_instructions(profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan) -> S2FrbcInstructionProfile: elements = [] actuator_configurations_per_timestep = device_plan.get_operation_mode_id() if actuator_configurations_per_timestep is not None: @@ -144,5 +146,5 @@ def convert_plan_to_instructions(profile_metadata, device_plan): elements = [None] * profile_metadata.get_nr_of_timesteps() return S2FrbcInstructionProfile(profile_metadata, elements) - def get_priority_class(self): + def get_priority_class(self) -> int: return self.priority_class diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py similarity index 80% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py index c189fa1..f60e2f5 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py @@ -1,29 +1,32 @@ from datetime import datetime, timedelta - +from typing import Optional from operation_mode_profile_tree import OperationModeProfileTree from common.joule_profile import JouleProfile from common.proposal import Proposal from common.target_profile import TargetProfile from s2_frbc_plan import S2FrbcPlan from s2_frbc_instruction_profile import S2FrbcInstructionProfile +from common.profile_metadata import ProfileMetadata +from frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper +from common.device_planner.device_plan import DevicePlan class S2FrbcDevicePlanner: - def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): + def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: ProfileMetadata, plan_due_by_date: datetime): self.s2_frbc_state = s2_frbc_state self.profile_metadata = profile_metadata self.zero_profile = JouleProfile(profile_metadata, 0) self.null_profile = JouleProfile(profile_metadata, None) - self.state_tree = None + self.state_tree: Optional[OperationModeProfileTree] = None if self.is_storage_available(s2_frbc_state): self.state_tree = OperationModeProfileTree( s2_frbc_state, profile_metadata, plan_due_by_date ) self.priority_class = s2_frbc_state.get_priority_class() - self.latest_plan = None - self.accepted_plan = None + self.latest_plan: Optional[S2FrbcPlan] = None + self.accepted_plan: Optional[S2FrbcPlan] = None - def is_storage_available(self, storage_state): + def is_storage_available(self, storage_state: S2FrbcDeviceStateWrapper) -> bool: latest_before_first_ptu = OperationModeProfileTree.get_latest_before( self.profile_metadata.get_profile_start(), storage_state.get_system_descriptions(), @@ -50,18 +53,18 @@ def is_storage_available(self, storage_state): and active_and_upcoming_system_descriptions_has_active_storage ) - def get_device_id(self): + def get_device_id(self) -> str: return self.s2_frbc_state.get_device_id() - def get_connection_id(self): + def get_connection_id(self) -> str: return self.s2_frbc_state.get_connection_id() - def get_device_name(self): + def get_device_name(self) -> str: return self.s2_frbc_state.get_device_name() def create_improved_planning( - self, diff_to_global_target, diff_to_max, diff_to_min, plan_due_by_date - ): + self, diff_to_global_target: JouleProfile, diff_to_max: JouleProfile, diff_to_min: JouleProfile, plan_due_by_date: datetime + ) -> Proposal: target = diff_to_global_target.add(self.accepted_plan.get_energy()) max_profile = diff_to_max.add(self.accepted_plan.get_energy()) min_profile = diff_to_min.add(self.accepted_plan.get_energy()) @@ -81,7 +84,7 @@ def create_improved_planning( ) return proposal - def create_initial_planning(self, plan_due_by_date): + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: if self.is_storage_available(self.s2_frbc_state): self.latest_plan = self.state_tree.find_best_plan( TargetProfile.null_profile(self.profile_metadata), @@ -93,7 +96,7 @@ def create_initial_planning(self, plan_due_by_date): self.accepted_plan = self.latest_plan return self.latest_plan.get_energy() - def accept_proposal(self, accepted_proposal): + def accept_proposal(self, accepted_proposal: Proposal) -> None: if accepted_proposal.get_origin() != self: raise ValueError( f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." @@ -110,13 +113,13 @@ def accept_proposal(self, accepted_proposal): ) self.accepted_plan = self.latest_plan - def get_current_profile(self): + def get_current_profile(self) -> JouleProfile: return self.accepted_plan.get_energy() - def get_latest_plan(self): + def get_latest_plan(self) -> Optional[S2FrbcPlan]: return self.latest_plan - def get_device_plan(self): + def get_device_plan(self) -> DevicePlan: return DevicePlan( self.get_device_id(), self.get_device_name(), @@ -130,7 +133,7 @@ def get_device_plan(self): ) @staticmethod - def convert_plan_to_instructions(profile_metadata, device_plan): + def convert_plan_to_instructions(profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan) -> S2FrbcInstructionProfile: elements = [] actuator_configurations_per_timestep = device_plan.get_operation_mode_id() if actuator_configurations_per_timestep is not None: @@ -143,5 +146,5 @@ def convert_plan_to_instructions(profile_metadata, device_plan): elements = [None] * profile_metadata.get_nr_of_timesteps() return S2FrbcInstructionProfile(profile_metadata, elements) - def get_priority_class(self): + def get_priority_class(self) -> int: return self.priority_class diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py similarity index 64% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py index 71ab315..fd6ab9f 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py @@ -1,6 +1,7 @@ from datetime import datetime from typing import List - +from s2python.common import CommodityQuantity, PowerForecast +from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour, FRBCUsageForecast, FRBCFillLevelTargetProfile class S2FrbcDeviceState: class ComputationalParameters: @@ -21,14 +22,13 @@ def __init__( connection_id: str, priority_class: int, timestamp: datetime, - energy_in_current_timestep, + energy_in_current_timestep: CommodityQuantity, is_online: bool, - power_forecast, - system_descriptions: List, - leakage_behaviours: List, - usage_forecasts: List, - fill_level_target_profiles: List, - computational_parameters: "S2FrbcDeviceState.ComputationalParameters", + power_forecast: PowerForecast, + system_descriptions: List[FRBCSystemDescription], + leakage_behaviours: List[FRBCLeakageBehaviour], + usage_forecasts: List[FRBCUsageForecast], + fill_level_target_profiles: List[FRBCFillLevelTargetProfile], ): self.device_id = device_id self.device_name = device_name @@ -42,21 +42,15 @@ def __init__( self.leakage_behaviours = leakage_behaviours self.usage_forecasts = usage_forecasts self.fill_level_target_profiles = fill_level_target_profiles - self.computational_parameters = computational_parameters - def get_system_descriptions(self) -> List: + def get_system_descriptions(self) -> List[FRBCSystemDescription]: return self.system_descriptions - def get_leakage_behaviours(self) -> List: + def get_leakage_behaviours(self) -> List[FRBCLeakageBehaviour]: return self.leakage_behaviours - def get_usage_forecasts(self) -> List: + def get_usage_forecasts(self) -> List[FRBCUsageForecast]: return self.usage_forecasts - def get_fill_level_target_profiles(self) -> List: + def get_fill_level_target_profiles(self) -> List[FRBCFillLevelTargetProfile]: return self.fill_level_target_profiles - - def get_computational_parameters( - self, - ) -> "S2FrbcDeviceState.ComputationalParameters": - return self.computational_parameters diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py similarity index 75% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py index c5e3210..1c50e35 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py @@ -1,47 +1,50 @@ from datetime import datetime, timedelta +from typing import Dict, List, Optional, Any from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration from s2python.common import CommodityQuantity - +from frbc_timestep import FrbcTimestep +from frbc_operation_mode_wrapper import FrbcOperationModeWrapper +from s2_frbc_device_state import S2FrbcDeviceState +from s2python.common.transition import Transition +from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription class S2FrbcDeviceStateWrapper: epsilon = 1e-4 - def __init__(self, device_state): + def __init__(self, device_state: S2FrbcDeviceState): self.device_state = device_state - self.nr_of_buckets = ( - device_state.get_computational_parameters().get_nr_of_buckets() - ) - self.nr_of_stratification_layers = 0 # Initialize appropriately - self.actuator_operation_mode_map_per_timestep = {} - self.all_actions = {} - self.operation_mode_uses_factor_map = {} - self.operation_modes = {} + self.nr_of_buckets: int = device_state.get_computational_parameters().get_nr_of_buckets() + self.nr_of_stratification_layers: int = 0 # Initialize appropriately + self.actuator_operation_mode_map_per_timestep: Dict[datetime, Dict[str, List[str]]] = {} + self.all_actions: Dict[datetime, List[Dict[str, S2ActuatorConfiguration]]] = {} + self.operation_mode_uses_factor_map: Dict[str, bool] = {} + self.operation_modes: Dict[str, FrbcOperationModeWrapper] = {} - def is_online(self): + def is_online(self) -> bool: return self.device_state.is_online() - def get_power_forecast(self): + def get_power_forecast(self) -> Any: return self.device_state.get_power_forecast() - def get_system_descriptions(self): + def get_system_descriptions(self) -> Any: return self.device_state.get_system_descriptions() - def get_leakage_behaviours(self): + def get_leakage_behaviours(self) -> Any: return self.device_state.get_leakage_behaviours() - def get_usage_forecasts(self): + def get_usage_forecasts(self) -> Any: return self.device_state.get_usage_forecasts() - def get_fill_level_target_profiles(self): + def get_fill_level_target_profiles(self) -> Any: return self.device_state.get_fill_level_target_profiles() - def get_energy_in_current_timestep(self): + def get_energy_in_current_timestep(self) -> CommodityQuantity: return self.device_state.get_energy_in_current_timestep() - def get_computational_parameters(self): + def get_computational_parameters(self) -> Any: return self.device_state.get_computational_parameters() - def get_actuators(self, target_timestep): + def get_actuators(self, target_timestep: FrbcTimestep) -> List[str]: actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( target_timestep.get_start_date() ) @@ -49,9 +52,9 @@ def get_actuators(self, target_timestep): actuator_operation_mode_map = self.create_actuator_operation_mode_map( target_timestep ) - return actuator_operation_mode_map.keys() + return list(actuator_operation_mode_map.keys()) - def get_normal_operation_modes_for_actuator(self, target_timestep, actuator_id): + def get_normal_operation_modes_for_actuator(self, target_timestep: FrbcTimestep, actuator_id: str) -> List[str]: actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( target_timestep.get_start_date() ) @@ -59,9 +62,9 @@ def get_normal_operation_modes_for_actuator(self, target_timestep, actuator_id): actuator_operation_mode_map = self.create_actuator_operation_mode_map( target_timestep ) - return actuator_operation_mode_map.get(actuator_id) + return actuator_operation_mode_map.get(actuator_id, []) - def create_actuator_operation_mode_map(self, target_timestep): + def create_actuator_operation_mode_map(self, target_timestep: FrbcTimestep) -> Dict[str, List[str]]: actuator_operation_mode_map = {} for a in target_timestep.get_system_description().get_actuators(): actuator_operation_mode_map[a.get_id()] = [ @@ -74,7 +77,7 @@ def create_actuator_operation_mode_map(self, target_timestep): ] = actuator_operation_mode_map return actuator_operation_mode_map - def get_operation_mode(self, target_timestep, actuator_id, operation_mode_id): + def get_operation_mode(self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str) -> Optional[FrbcOperationModeWrapper]: om_key = f"{actuator_id}-{operation_mode_id}" if om_key in self.operation_modes: return self.operation_modes[om_key] @@ -90,9 +93,7 @@ def get_operation_mode(self, target_timestep, actuator_id, operation_mode_id): return found_operation_mode return None - def operation_mode_uses_factor( - self, target_timestep, actuator_id, operation_mode_id - ): + def operation_mode_uses_factor(self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str) -> bool: key = f"{actuator_id}-{operation_mode_id}" if key not in self.operation_mode_uses_factor_map: result = self.get_operation_mode( @@ -101,7 +102,7 @@ def operation_mode_uses_factor( self.operation_mode_uses_factor_map[key] = result return self.operation_mode_uses_factor_map[key] - def get_all_possible_actuator_configurations(self, target_timestep): + def get_all_possible_actuator_configurations(self, target_timestep: FrbcTimestep) -> List[Dict[str, S2ActuatorConfiguration]]: timestep_date = target_timestep.get_start_date() if timestep_date not in self.all_actions: possible_actuator_configs = {} @@ -142,13 +143,13 @@ def get_all_possible_actuator_configurations(self, target_timestep): self.all_actions[timestep_date] = actions_for_timestep return self.all_actions[timestep_date] - def combination_to_map(self, cur, keys, possible_actuator_configs): + def combination_to_map(self, cur: List[int], keys: List[str], possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]]) -> Dict[str, S2ActuatorConfiguration]: combination = {} for i, key in enumerate(keys): combination[key] = possible_actuator_configs[key][cur[i]] return combination - def increase(self, cur, keys, possible_actuator_configs): + def increase(self, cur: List[int], keys: List[str], possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]]) -> bool: cur[0] += 1 for i, key in enumerate(keys): if cur[i] >= len(possible_actuator_configs[key]): @@ -160,8 +161,8 @@ def increase(self, cur, keys, possible_actuator_configs): @staticmethod def get_transition( - target_timestep, actuator_id, from_operation_mode_id, to_operation_mode_id - ): + target_timestep: FrbcTimestep, actuator_id: str, from_operation_mode_id: str, to_operation_mode_id: str + ) -> Optional[Transition]: actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( target_timestep, actuator_id ) @@ -173,7 +174,7 @@ def get_transition( return transition return None - def get_operation_mode_power(self, om, fill_level, factor): + def get_operation_mode_power(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: element = self.find_operation_mode_element(om, fill_level) power_watt = 0 for power_range in element.get_power_ranges(): @@ -210,7 +211,7 @@ def find_operation_mode_element(om, fill_level): ) return element - def get_operation_mode_fill_rate(self, om, fill_level, factor): + def get_operation_mode_fill_rate(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: element = self.find_operation_mode_element(om, fill_level) fill_rate = element.get_fill_rate() start = fill_rate.get_end_of_range() @@ -218,7 +219,7 @@ def get_operation_mode_fill_rate(self, om, fill_level, factor): return (start - end) * factor + end @staticmethod - def get_leakage_rate(target_timestep, fill_level): + def get_leakage_rate(target_timestep: FrbcTimestep, fill_level: float) -> float: if target_timestep.get_leakage_behaviour() is None: return 0 else: @@ -227,7 +228,7 @@ def get_leakage_rate(target_timestep, fill_level): ).get_leakage_rate() @staticmethod - def find_leakage_element(target_timestep, fill_level): + def find_leakage_element(target_timestep: FrbcTimestep, fill_level: float) -> FRBCLeakageBehaviourElement: leakage = target_timestep.get_leakage_behaviour() element = next( ( @@ -250,7 +251,7 @@ def find_leakage_element(target_timestep, fill_level): return element @staticmethod - def calculate_bucket(target_timestep, fill_level): + def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: fill_level_lower_limit = ( target_timestep.get_system_description() .get_storage() @@ -270,7 +271,7 @@ def calculate_bucket(target_timestep, fill_level): ) @staticmethod - def get_timer_duration_milliseconds(target_timestep, actuator_id, timer_id): + def get_timer_duration_milliseconds(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> int: actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( target_timestep, actuator_id ) @@ -281,7 +282,7 @@ def get_timer_duration_milliseconds(target_timestep, actuator_id, timer_id): return timer.get_duration() if timer else 0 @staticmethod - def get_timer_duration(target_timestep, actuator_id, timer_id): + def get_timer_duration(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> timedelta: return timedelta( milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( target_timestep, actuator_id, timer_id @@ -289,7 +290,7 @@ def get_timer_duration(target_timestep, actuator_id, timer_id): ) @staticmethod - def get_actuator_description(target_timestep, actuator_id): + def get_actuator_description(target_timestep: FrbcTimestep, actuator_id: str) -> Optional[FRBCActuatorDescription]: return next( ( ad diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py similarity index 87% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py index 1c1074e..06af23c 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py @@ -1,4 +1,5 @@ from typing import Dict, List +from datetime import datetime, Duration from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration @@ -18,9 +19,9 @@ def get_actuator_configuration(self) -> Dict[str, S2ActuatorConfiguration]: def __init__( self, - profile_start, - timestep_duration, - elements: List["S2FrbcInstructionProfile.Element"], + profile_start: datetime, + timestep_duration: Duration, + elements: List[Element], ): self.profile_start = profile_start self.timestep_duration = timestep_duration diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py similarity index 92% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py index 2d33b62..011a909 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py @@ -14,7 +14,6 @@ def __init__( self.energy = energy self.fill_level = fill_level self.operation_mode_id = operation_mode_id - self.s2_frbc_insights_profile = s2_frbc_insights_profile def is_idle(self) -> bool: return self.idle From 82900f29f4b74e431d3a53cc154c40947609df31 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 7 Feb 2025 14:15:28 +0100 Subject: [PATCH 09/33] Created pytest for FRBC Signed-off-by: Vlad Iftime --- .../s2_frbc_actuator_configuration.py} | 0 .../frbc/s2_frbc_instruction_profile.py | 2 +- .../profile_steering/frbc/s2_frbc_plan.py | 16 +- .../tests/joule_profile_example.py | 297 ++++++++++++++++++ .../tests/test_frbc_device.py | 156 +++++++++ .../tests/test_frbc_planning.py | 43 +++ 6 files changed, 505 insertions(+), 9 deletions(-) rename flexmeasures_s2/profile_steering/{s2_utils/s2_actuator_configuration.py => frbc/s2_frbc_actuator_configuration.py} (100%) create mode 100644 flexmeasures_s2/profile_steering/tests/joule_profile_example.py create mode 100644 flexmeasures_s2/profile_steering/tests/test_frbc_device.py create mode 100644 flexmeasures_s2/profile_steering/tests/test_frbc_planning.py diff --git a/flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_actuator_configuration.py similarity index 100% rename from flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py rename to flexmeasures_s2/profile_steering/frbc/s2_frbc_actuator_configuration.py diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py index 06af23c..f7beec3 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py @@ -1,6 +1,6 @@ from typing import Dict, List from datetime import datetime, Duration -from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from s2_frbc_actuator_configuration import S2ActuatorConfiguration class S2FrbcInstructionProfile: diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py index 011a909..5d4d776 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py @@ -1,13 +1,15 @@ from typing import List, Dict - - +from s2_frbc_actuator_configuration import S2FrbcActuatorConfiguration +from common.joule_profile import JouleProfile +from common.soc_profile import SoCProfile + class S2FrbcPlan: def __init__( self, idle: bool, energy, fill_level, - operation_mode_id: List[Dict[str, "S2ActuatorConfiguration"]], + operation_mode_id: List[Dict[str, S2FrbcActuatorConfiguration]], s2_frbc_insights_profile, ): self.idle = idle @@ -18,14 +20,12 @@ def __init__( def is_idle(self) -> bool: return self.idle - def get_energy(self): + def get_energy(self) -> JouleProfile: return self.energy - def get_fill_level(self): + def get_fill_level(self) -> SoCProfile: return self.fill_level - def get_operation_mode_id(self) -> List[Dict[str, "S2ActuatorConfiguration"]]: + def get_operation_mode_id(self) -> List[Dict[str, S2FrbcActuatorConfiguration]]: return self.operation_mode_id - def get_s2_frbc_insights_profile(self): - return self.s2_frbc_insights_profile diff --git a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py new file mode 100644 index 0000000..2080332 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py @@ -0,0 +1,297 @@ +from typing import List + + +JouleProfileTarget: List = [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, +] + + +def get_JouleProfileTarget() -> List: + return JouleProfileTarget diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py new file mode 100644 index 0000000..2ef4daf --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -0,0 +1,156 @@ +import datetime +import uuid + +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state import S2FrbcDeviceState + +from s2python.frbc import ( + FRBCSystemDescription, + FRBCActuatorDescription, + FRBCOperationMode, + FRBCOperationModeElement, + FRBCStorageDescription, +) + +from s2python.common import ( + Commodity, + Transition, + Timer, + NumberRange, + PowerRange, + CommodityQuantity, + PowerForecast, + PowerForecastElement, + PowerForecastValue, +) + + +# Define the test object +test_device_state = S2FrbcDeviceState( + device_id=str(uuid.uuid4()), + device_name="test_device", + connection_id=str(uuid.uuid4()), + priority_class=1, + timestamp=datetime.datetime.now(tz=datetime.timezone.utc), + energy_in_current_timestep=CommodityQuantity.ELECTRIC_POWER_L1, + is_online=True, + power_forecast=PowerForecast( + message_id=str(uuid.uuid4()), + elements=[ + PowerForecastElement( + duration=datetime.timedelta(hours=1), + power_values=[ + PowerForecastValue( + value=100, + timestamp=datetime.datetime.now(tz=datetime.timezone.utc), + ) + ], + ) + ], + ), + system_descriptions=[ + FRBCSystemDescription( + message_id=str(uuid.uuid4()), + valid_from=datetime.datetime.now(tz=datetime.timezone.utc), + actuators=[ + FRBCActuatorDescription( + id=str(uuid.uuid4()), # Ensure id is a string + diagnostic_label="charge", + supported_commodities=[Commodity.ELECTRICITY], + operation_modes=[ + FRBCOperationMode( + id="charge.on", + diagnostic_label="charge.on", + elements=[ + FRBCOperationModeElement( + fill_level_range=NumberRange( + start_of_range=0.0, + end_of_range=100.0, + ), + fill_rate=NumberRange( + start_of_range=0.0054012349, + end_of_range=0.0054012349, + ), + power_ranges=[ + PowerRange( + start_of_range=28000.0, + end_of_range=28000.0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + ], + abnormal_condition_only=False, + ), + FRBCOperationMode( + id="charge.off", + diagnostic_label="charge.off", + elements=[ + FRBCOperationModeElement( + fill_level_range=NumberRange( + start_of_range=0, + end_of_range=100, + ), + fill_rate=NumberRange( + start_of_range=0, + end_of_range=0, + ), + power_ranges=[ + PowerRange( + start_of_range=0, + end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + running_costs=None, + ) + ], + abnormal_condition_only=False, + ), + ], + transitions=[ + Transition( + id="off.to.on", + **{ + "from": "charge.off" + }, # Use a workaround to set 'from' since it's a keyword in Python, + to="charge.on", + start_timers=["on.to.off.timer"], + blocking_timers=["off.to.on.timer"], + abnormal_condition_only=False, + ), + Transition( + id="on.to.off", + **{ + "from": "charge.on" + }, # Use a workaround to set 'from' since it's a keyword in Python, + to="charge.off", + start_timers=["off.to.on.timer"], + blocking_timers=["on.to.off.timer"], + abnormal_condition_only=False, + ), + ], + timers=[ + Timer( + id="on.to.off.timer", + diagnostic_label="on.to.off.timer", + duration=30, + ), + Timer( + id="off.to.on.timer", + diagnostic_label="off.to.on.timer", + duration=30, + ), + ], + ) + ], + storage=FRBCStorageDescription( + diagnostic_label="battery", + fill_level_label="SoC %", + provides_leakage_behaviour=False, + provides_fill_level_target_profile=True, + provides_usage_forecast=False, + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + ), + ) + ], +) diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py new file mode 100644 index 0000000..c14b7c1 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py @@ -0,0 +1,43 @@ +import pytest +from datetime import datetime, timezone, timedelta +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_planner import S2FrbcDevicePlanner +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from test_frbc_device import test_device_state +from joule_profile_example import JouleProfileTarget + +@pytest.fixture +def setup_planner() -> tuple[S2FrbcDevicePlanner, datetime, ProfileMetadata]: + # Initialize the necessary objects for the test + device_state = S2FrbcDeviceStateWrapper(test_device_state) + epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) + profile_metadata = ProfileMetadata( + profile_start=epoch_time, + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288 + ) # Mock or create a real instance + plan_due_by_date = profile_metadata.get_profile_start().plus_seconds(10) + + # Initialize the planner + planner = S2FrbcDevicePlanner( + device_state, profile_metadata, plan_due_by_date + ) + + # Call the method to test + joule_profile = planner.create_initial_planning(plan_due_by_date) + # Define the expected JouleProfile + expected_joule_profile = JouleProfile(profile_start=profile_metadata.get_profile_start(), timestep_duration=profile_metadata.get_timestep_duration(), elements=JouleProfileTarget) + assert joule_profile == expected_joule_profile + +def test_create_initial_planning(setup_planner): + planner, plan_due_by_date, profile_metadata = setup_planner + + # Call the method to test + joule_profile = planner.create_initial_planning(plan_due_by_date) + + # Define the expected JouleProfile + expected_joule_profile = JouleProfile(profile_start=profile_metadata.get_profile_start(), timestep_duration=profile_metadata.get_timestep_duration(), elements=JouleProfileTarget) + + # Assert that the output matches the expected output + assert joule_profile == expected_joule_profile From 10c28e55b91489a977c07d21f7bbe725dfd07c8f Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 7 Feb 2025 14:53:45 +0100 Subject: [PATCH 10/33] Adding unit test Signed-off-by: Vlad Iftime --- .../profile_steering/common/proposal.py | 4 ++-- .../profile_steering/common/target_profile.py | 2 +- .../frbc/frbc_operation_mode_wrapper.py | 4 ++-- .../profile_steering/frbc/frbc_state.py | 8 +++---- .../profile_steering/frbc/frbc_timestep.py | 5 ++++- .../frbc/operation_mode_profile_tree.py | 8 +++---- .../frbc/s2_frbc_device_planner.py | 18 +++++++-------- .../frbc/s2_frbc_device_state.py | 4 ++-- .../frbc/s2_frbc_device_state_wrapper.py | 16 +++++++++----- .../frbc/s2_frbc_instruction_profile.py | 6 ++--- .../profile_steering/frbc/s2_frbc_plan.py | 10 ++++----- .../tests/test_frbc_device.py | 17 ++------------ .../tests/test_frbc_planning.py | 22 +++++++------------ 13 files changed, 56 insertions(+), 68 deletions(-) diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py index 01a5eed..380bc3a 100644 --- a/flexmeasures_s2/profile_steering/common/proposal.py +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -1,6 +1,6 @@ from typing import Optional -from common.joule_profile import JouleProfile -from common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile # TODO: need a DevicePlanner class diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py index 9d6aa89..9ca465a 100644 --- a/flexmeasures_s2/profile_steering/common/target_profile.py +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -1,5 +1,5 @@ from typing import List, Union -from common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile class TargetProfile: diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py index f852340..4946341 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py +++ b/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py @@ -1,6 +1,5 @@ from typing import List -from s2_utils.number_range_wrapper import NumberRangeWrapper -from s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper class FrbcOperationModeElementWrapper: def __init__(self, frbc_operation_mode_element): @@ -32,6 +31,7 @@ def __init__(self, frbc_operation_mode): self.uses_factor = self.calculate_uses_factor() def calculate_uses_factor(self) -> bool: + from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper for element in self.elements: if abs(element.get_fill_rate().get_start_of_range() - element.get_fill_rate().get_end_of_range()) > S2FrbcDeviceStateWrapper.epsilon: return True diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/frbc/frbc_state.py index 1ba7fa8..315ac4e 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/frbc/frbc_state.py @@ -1,15 +1,15 @@ import logging from datetime import datetime, timedelta from s2python.frbc import ( - TargetProfile, FRBCSystemDescription, ) -from flexmeasures_s2.profile_steering.s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) -from frbc_timestep import FrbcTimestep -from selection_reason_result import SelectionResult, SelectionReason +from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.frbc.selection_reason_result import SelectionResult, SelectionReason from typing import Dict, Optional diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py index 761e1de..76b73ee 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py @@ -1,8 +1,11 @@ from datetime import datetime, timedelta from typing import List, Optional, Union from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour -from frbc_state import FrbcState, SelectionReason +from flexmeasures_s2.profile_steering.frbc.frbc_state import FrbcState +def SelectionReason(enum): + NO_ALTERNATIVE = 0 + EMERGENCY_STATE = 1 class FrbcTimestep: def __init__( diff --git a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py index d6c8665..ab79708 100644 --- a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py @@ -1,19 +1,19 @@ from datetime import datetime, timedelta from typing import List, Optional, Any -from frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) -from flexmeasures_s2.profile_steering.s2_utils.s2_actuator_configuration import S2ActuatorConfiguration + from flexmeasures_s2.profile_steering.frbc.frbc_state import FrbcState from flexmeasures_s2.profile_steering.frbc.fill_level_target_util import FillLevelTargetUtil from flexmeasures_s2.profile_steering.frbc.usage_forecast_util import UsageForecastUtil from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper from flexmeasures_s2.profile_steering.frbc.s2_frbc_plan import S2FrbcPlan from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -from common.joule_profile import JouleProfile -from common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile from pint import UnitRegistry SI = UnitRegistry() diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py index f60e2f5..bfbb363 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py @@ -1,14 +1,13 @@ from datetime import datetime, timedelta from typing import Optional -from operation_mode_profile_tree import OperationModeProfileTree -from common.joule_profile import JouleProfile -from common.proposal import Proposal -from common.target_profile import TargetProfile -from s2_frbc_plan import S2FrbcPlan -from s2_frbc_instruction_profile import S2FrbcInstructionProfile -from common.profile_metadata import ProfileMetadata -from frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper -from common.device_planner.device_plan import DevicePlan +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper +from flexmeasures_s2.profile_steering.common.device_planner.device_plan import DevicePlan class S2FrbcDevicePlanner: @@ -19,6 +18,7 @@ def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: Pr self.null_profile = JouleProfile(profile_metadata, None) self.state_tree: Optional[OperationModeProfileTree] = None if self.is_storage_available(s2_frbc_state): + from flexmeasures_s2.profile_steering.frbc.operation_mode_profile_tree import OperationModeProfileTree self.state_tree = OperationModeProfileTree( s2_frbc_state, profile_metadata, plan_due_by_date ) diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py index fd6ab9f..8dab04e 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py @@ -1,5 +1,5 @@ from datetime import datetime -from typing import List +from typing import List, Optional from s2python.common import CommodityQuantity, PowerForecast from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour, FRBCUsageForecast, FRBCFillLevelTargetProfile @@ -24,7 +24,7 @@ def __init__( timestamp: datetime, energy_in_current_timestep: CommodityQuantity, is_online: bool, - power_forecast: PowerForecast, + power_forecast: Optional[PowerForecast], system_descriptions: List[FRBCSystemDescription], leakage_behaviours: List[FRBCLeakageBehaviour], usage_forecasts: List[FRBCUsageForecast], diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py index 1c50e35..debbfac 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py @@ -1,10 +1,11 @@ from datetime import datetime, timedelta from typing import Dict, List, Optional, Any -from s2_utils.s2_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration from s2python.common import CommodityQuantity -from frbc_timestep import FrbcTimestep -from frbc_operation_mode_wrapper import FrbcOperationModeWrapper -from s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.profile_steering.frbc.frbc_operation_mode_wrapper import FrbcOperationModeWrapper +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep + from s2python.common.transition import Transition from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription @@ -77,7 +78,8 @@ def create_actuator_operation_mode_map(self, target_timestep: FrbcTimestep) -> D ] = actuator_operation_mode_map return actuator_operation_mode_map - def get_operation_mode(self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str) -> Optional[FrbcOperationModeWrapper]: + def get_operation_mode(self, target_timestep, actuator_id: str, operation_mode_id: str): + from flexmeasures_s2.profile_steering.frbc.frbc_operation_mode_wrapper import FrbcOperationModeWrapper om_key = f"{actuator_id}-{operation_mode_id}" if om_key in self.operation_modes: return self.operation_modes[om_key] @@ -161,8 +163,9 @@ def increase(self, cur: List[int], keys: List[str], possible_actuator_configs: D @staticmethod def get_transition( - target_timestep: FrbcTimestep, actuator_id: str, from_operation_mode_id: str, to_operation_mode_id: str + target_timestep, actuator_id: str, from_operation_mode_id: str, to_operation_mode_id: str ) -> Optional[Transition]: + from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( target_timestep, actuator_id ) @@ -175,6 +178,7 @@ def get_transition( return None def get_operation_mode_power(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: + from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep element = self.find_operation_mode_element(om, fill_level) power_watt = 0 for power_range in element.get_power_ranges(): diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py index f7beec3..9972d21 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py @@ -1,6 +1,6 @@ from typing import Dict, List -from datetime import datetime, Duration -from s2_frbc_actuator_configuration import S2ActuatorConfiguration +from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration class S2FrbcInstructionProfile: @@ -20,7 +20,7 @@ def get_actuator_configuration(self) -> Dict[str, S2ActuatorConfiguration]: def __init__( self, profile_start: datetime, - timestep_duration: Duration, + timestep_duration: timedelta, elements: List[Element], ): self.profile_start = profile_start diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py index 5d4d776..97978bf 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py +++ b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py @@ -1,7 +1,7 @@ from typing import List, Dict -from s2_frbc_actuator_configuration import S2FrbcActuatorConfiguration -from common.joule_profile import JouleProfile -from common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile class S2FrbcPlan: def __init__( @@ -9,7 +9,7 @@ def __init__( idle: bool, energy, fill_level, - operation_mode_id: List[Dict[str, S2FrbcActuatorConfiguration]], + operation_mode_id: List[Dict[str, S2ActuatorConfiguration]], s2_frbc_insights_profile, ): self.idle = idle @@ -26,6 +26,6 @@ def get_energy(self) -> JouleProfile: def get_fill_level(self) -> SoCProfile: return self.fill_level - def get_operation_mode_id(self) -> List[Dict[str, S2FrbcActuatorConfiguration]]: + def get_operation_mode_id(self) -> List[Dict[str, S2ActuatorConfiguration]]: return self.operation_mode_id diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 2ef4daf..31773aa 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -33,23 +33,10 @@ timestamp=datetime.datetime.now(tz=datetime.timezone.utc), energy_in_current_timestep=CommodityQuantity.ELECTRIC_POWER_L1, is_online=True, - power_forecast=PowerForecast( - message_id=str(uuid.uuid4()), - elements=[ - PowerForecastElement( - duration=datetime.timedelta(hours=1), - power_values=[ - PowerForecastValue( - value=100, - timestamp=datetime.datetime.now(tz=datetime.timezone.utc), - ) - ], - ) - ], - ), + system_descriptions=[ FRBCSystemDescription( - message_id=str(uuid.uuid4()), + message_id=str(uuid.uuid4()), valid_from=datetime.datetime.now(tz=datetime.timezone.utc), actuators=[ FRBCActuatorDescription( diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py index c14b7c1..bd6db8a 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py @@ -7,8 +7,7 @@ from test_frbc_device import test_device_state from joule_profile_example import JouleProfileTarget -@pytest.fixture -def setup_planner() -> tuple[S2FrbcDevicePlanner, datetime, ProfileMetadata]: +def test_create_initial_planning(): # Initialize the necessary objects for the test device_state = S2FrbcDeviceStateWrapper(test_device_state) epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) @@ -16,28 +15,23 @@ def setup_planner() -> tuple[S2FrbcDevicePlanner, datetime, ProfileMetadata]: profile_start=epoch_time, timestep_duration=timedelta(seconds=300), nr_of_timesteps=288 - ) # Mock or create a real instance - plan_due_by_date = profile_metadata.get_profile_start().plus_seconds(10) + ) + plan_due_by_date = profile_metadata.get_profile_start() + timedelta(seconds=10) # Initialize the planner planner = S2FrbcDevicePlanner( device_state, profile_metadata, plan_due_by_date ) - # Call the method to test - joule_profile = planner.create_initial_planning(plan_due_by_date) - # Define the expected JouleProfile - expected_joule_profile = JouleProfile(profile_start=profile_metadata.get_profile_start(), timestep_duration=profile_metadata.get_timestep_duration(), elements=JouleProfileTarget) - assert joule_profile == expected_joule_profile - -def test_create_initial_planning(setup_planner): - planner, plan_due_by_date, profile_metadata = setup_planner - # Call the method to test joule_profile = planner.create_initial_planning(plan_due_by_date) # Define the expected JouleProfile - expected_joule_profile = JouleProfile(profile_start=profile_metadata.get_profile_start(), timestep_duration=profile_metadata.get_timestep_duration(), elements=JouleProfileTarget) + expected_joule_profile = JouleProfile( + profile_start=profile_metadata.get_profile_start(), + timestep_duration=profile_metadata.get_timestep_duration(), + elements=JouleProfileTarget + ) # Assert that the output matches the expected output assert joule_profile == expected_joule_profile From 108c0a8f1d15b675cf07a0842ad2d6c517d85123 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 10 Feb 2025 21:22:26 +0100 Subject: [PATCH 11/33] Profile_metadata Signed-off-by: Vlad Iftime --- .../common/abstract_profile.py | 85 +++++++++++++ .../profile_steering/common/device_plan.py | 115 ++++++++++++++++++ .../common/profile_metadata.py | 83 +++++++++++++ .../profile_steering/common/soc_profile.py | 5 +- .../congestion_point_planner.py | 101 ++++++++++----- .../{frbc => }/device_planner/__init__.py | 0 .../device_planner/device_planner.py | 43 ++++--- .../frbc/s2_frbc_device_controller.py | 0 .../frbc/s2_frbc_device_planner.py | 16 +-- .../frbc/s2_frbc_device_state.py | 0 .../frbc/s2_frbc_device_state_wrapper.py | 0 .../frbc/s2_frbc_insight_profile.py | 0 .../frbc/s2_frbc_instruction_profile.py | 0 .../device_planner/frbc/s2_frbc_plan.py | 0 .../s2_actuator_configuration.py | 0 .../frbc/selection_reason_result.py | 15 ++- .../profile_steering/root_planner.py | 88 ++++++++++---- 17 files changed, 465 insertions(+), 86 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/common/abstract_profile.py create mode 100644 flexmeasures_s2/profile_steering/common/device_plan.py create mode 100644 flexmeasures_s2/profile_steering/common/profile_metadata.py rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/__init__.py (100%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/device_planner.py (68%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_device_controller.py (100%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_device_planner.py (90%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_device_state.py (100%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_device_state_wrapper.py (100%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_insight_profile.py (100%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_instruction_profile.py (100%) rename flexmeasures_s2/profile_steering/{frbc => }/device_planner/frbc/s2_frbc_plan.py (100%) rename flexmeasures_s2/profile_steering/{s2_utils => frbc}/s2_actuator_configuration.py (100%) diff --git a/flexmeasures_s2/profile_steering/common/abstract_profile.py b/flexmeasures_s2/profile_steering/common/abstract_profile.py new file mode 100644 index 0000000..72657bf --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/abstract_profile.py @@ -0,0 +1,85 @@ +from abc import ABC, abstractmethod +from typing import List, TypeVar, Generic +from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata + +E = TypeVar("E") +PT = TypeVar("PT", bound="AbstractProfile") + + +class AbstractProfile(ABC, Generic[E, PT]): + def __init__(self, profile_metadata: ProfileMetadata, elements: List[E]): + self.metadata = profile_metadata + self.elements = elements + self.validate(profile_metadata, elements) + + @abstractmethod + def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): + if elements is None: + raise ValueError("elements cannot be null") + if (24 * 60 * 60 * 1000) % profile_metadata.get_timestep_duration().total_seconds() != 0: + raise ValueError("A day should be dividable by the timeStepDuration") + if ( + not self.start_of_current_aligned_date( + profile_metadata.get_profile_start(), + profile_metadata.get_timestep_duration(), + ) + == profile_metadata.get_profile_start() + ): + raise ValueError("The startTimeDuration should be aligned with the timeStepDuration") + + def get_profile_metadata(self) -> ProfileMetadata: + return self.metadata + + def get_elements(self) -> List[E]: + return self.elements + + def get_element_end_date_at(self, index: int) -> datetime: + return self.metadata.get_profile_start_at_timestep_nr(index + 1) + + def index_at(self, date: datetime) -> int: + return self.metadata.get_starting_step_nr(date) + + def element_at(self, date: datetime) -> E: + index = self.index_at(date) + if index >= 0: + return self.elements[index] + raise ValueError(f"No element found at date - index {index} is invalid") + + @staticmethod + def next_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime: + time_step_duration_ms = time_step_duration.total_seconds() * 1000 + ms_since_last_aligned_date = (date.timestamp() * 1000) % time_step_duration_ms + + if ms_since_last_aligned_date == 0: + return date + else: + return date + timedelta(milliseconds=(time_step_duration_ms - ms_since_last_aligned_date)) + + @staticmethod + def start_of_current_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime: + ms_since_last_aligned_date = (date.timestamp() * 1000) % time_step_duration.total_seconds() * 1000 + if ms_since_last_aligned_date == 0: + return date + else: + return datetime.fromtimestamp(date.timestamp() - ms_since_last_aligned_date / 1000) + + @staticmethod + def end_of_current_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime: + return AbstractProfile.start_of_current_aligned_date(date, time_step_duration) + time_step_duration + + @staticmethod + def get_start_of_day(date: datetime) -> datetime: + return datetime.combine(date.date(), datetime.min.time()) + + @abstractmethod + def subprofile(self, new_start_date: datetime) -> PT: + pass + + @abstractmethod + def adjust_nr_of_elements(self, nr_of_elements: int) -> PT: + pass + + @abstractmethod + def is_compatible(self, other: PT) -> bool: + pass diff --git a/flexmeasures_s2/profile_steering/common/device_plan.py b/flexmeasures_s2/profile_steering/common/device_plan.py new file mode 100644 index 0000000..622a658 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/device_plan.py @@ -0,0 +1,115 @@ +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from typing import Optional + + +class DevicePlan: + def __init__( + self, + device_id: str, + device_name: str, + connection_id: str, + joule_profile: JouleProfile, + soc_profile: Optional[SoCProfile] = None, + extra_info: Optional[AbstractProfile] = None, + ): + self.device_id = device_id + self.device_name = device_name + self.connection_id = connection_id + self.joule_profile = joule_profile + self.soc_profile = soc_profile + self.extra_info_profile = extra_info + + if soc_profile and not soc_profile.is_compatible(joule_profile): + raise ValueError("The JouleProfile and the SoC Profile are not compatible") + if extra_info and not extra_info.is_compatible(joule_profile): + raise ValueError( + "The JouleProfile and the extra info profile for reflex are not compatible" + ) + + def get_joule_profile(self) -> JouleProfile: + return self.joule_profile + + def get_soc_profile(self) -> Optional[SoCProfile]: + return self.soc_profile + + def get_extra_info_profile(self) -> Optional[AbstractProfile]: + return self.extra_info_profile + + def get_extra_info_for_insights(self) -> Optional[InsightsProfile]: + return self.extra_info_for_insights + + def get_device_id(self) -> str: + return self.device_id + + def get_device_name(self) -> str: + return self.device_name + + def get_connection_id(self) -> str: + return self.connection_id + + def get_profile_metadata(self) -> ProfileMetadata: + return self.joule_profile.get_profile_metadata() + + def is_compatible(self, other: "DevicePlan") -> bool: + return self.joule_profile.is_compatible(other.joule_profile) + + def subprofile(self, new_start_date) -> "DevicePlan": + jp = self.joule_profile.subprofile(new_start_date) + sp = self.soc_profile.subprofile(new_start_date) if self.soc_profile else None + eip = ( + self.extra_info_profile.subprofile(new_start_date) + if self.extra_info_profile + else None + ) + eip_insights = ( + self.extra_info_for_insights.subprofile(new_start_date) + if self.extra_info_for_insights + else None + ) + return DevicePlan( + self.device_id, + self.device_name, + self.connection_id, + jp, + sp, + eip, + eip_insights, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "DevicePlan": + jp = self.joule_profile.adjust_nr_of_elements(nr_of_elements) + sp = ( + self.soc_profile.adjust_nr_of_elements(nr_of_elements) + if self.soc_profile + else None + ) + eip = ( + self.extra_info_profile.adjust_nr_of_elements(nr_of_elements) + if self.extra_info_profile + else None + ) + eip_insights = ( + self.extra_info_for_insights.adjust_nr_of_elements(nr_of_elements) + if self.extra_info_for_insights + else None + ) + return DevicePlan( + self.device_id, + self.device_name, + self.connection_id, + jp, + sp, + eip, + eip_insights, + ) + + def __str__(self) -> str: + return ( + f"DevicePlan [deviceId={self.device_id}, deviceName={self.device_name}, " + f"connectionId={self.connection_id}, jouleProfile={self.joule_profile}, " + f"socProfile={self.soc_profile}, extraInfoProfile={self.extra_info_profile}, " + f"extraInfoForInsights={self.extra_info_for_insights}]" + ) diff --git a/flexmeasures_s2/profile_steering/common/profile_metadata.py b/flexmeasures_s2/profile_steering/common/profile_metadata.py new file mode 100644 index 0000000..d423177 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/profile_metadata.py @@ -0,0 +1,83 @@ +from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile + + +class ProfileMetadata: + def __init__( + self, + profile_start: datetime, + timestep_duration: timedelta, + nr_of_timesteps: int, + ): + self.profile_start = profile_start + self.profile_end = profile_start + timestep_duration * nr_of_timesteps + self.profile_duration = timedelta(milliseconds=timestep_duration.total_seconds() * nr_of_timesteps) + self.timestep_duration = timestep_duration + self.nr_of_timesteps = nr_of_timesteps + + def get_profile_start(self) -> datetime: + return self.profile_start + + def get_profile_end(self) -> datetime: + return self.profile_start + self.timestep_duration * self.nr_of_timesteps + + def get_timestep_duration(self) -> timedelta: + return self.timestep_duration + + def get_nr_of_timesteps(self) -> int: + return self.nr_of_timesteps + + def get_profile_start_at_timestep_nr(self, timestep_nr: int) -> datetime: + if timestep_nr >= self.get_nr_of_timesteps() or self.get_nr_of_timesteps() < 0: + raise ValueError( + f"Expected timestep_nr to be between 0 <= timestep_nr < {self.get_nr_of_timesteps()} but was {timestep_nr}" + ) + return self.profile_start + self.timestep_duration * timestep_nr + + def get_starting_step_nr(self, instant: datetime) -> int: + if instant < self.profile_start: + return -1 + if instant > self.get_profile_end(): + return self.get_nr_of_timesteps() + return (int)( + (instant.timestamp() - self.get_profile_start().timestamp()) / self.get_timestep_duration().total_seconds() + ) + + def is_aligned_with(self, other: "ProfileMetadata") -> bool: + return ( + self.timestep_duration == other.timestep_duration + and (self.profile_start - other.profile_start).total_seconds() % self.timestep_duration.total_seconds() == 0 + ) + + def adjust_nr_of_timesteps(self, nr_of_timesteps: int) -> "ProfileMetadata": + return ProfileMetadata(self.profile_start, self.timestep_duration, nr_of_timesteps) + + def subprofile(self, new_start_date: datetime) -> "ProfileMetadata": + if new_start_date < self.profile_start: + raise ValueError("new_start_date is before profile_start") + if new_start_date > self.get_profile_end(): + raise ValueError("new_start_date is after profile_end") + new_start_date = AbstractProfile.next_aligned_date(new_start_date, self.get_timestep_duration()) + skipped_steps = (int)( + (new_start_date.timestamp() - self.get_profile_start().timestamp()) + / self.get_timestep_duration().total_seconds() + ) + new_nr_of_timesteps = self.get_nr_of_timesteps() - skipped_steps + return ProfileMetadata(new_start_date, self.get_timestep_duration(), new_nr_of_timesteps) + + def __eq__(self, other) -> bool: + if not isinstance(other, ProfileMetadata): + return False + return ( + self.profile_start == other.profile_start + and self.timestep_duration == other.timestep_duration + and self.nr_of_timesteps == other.nr_of_timesteps + ) + + def __str__(self) -> str: + return ( + f"ProfileMetadata [profileStart={self.profile_start}, " + f"timestepDuration={self.timestep_duration}, " + f"nrOfTimesteps={self.nr_of_timesteps}, " + f"getProfileEnd()={self.get_profile_end()}]" + ) diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py index 2212744..63d0d8e 100644 --- a/flexmeasures_s2/profile_steering/common/soc_profile.py +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -1,13 +1,14 @@ from typing import List, Optional +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile -class SoCProfile: +class SoCProfile(AbstractProfile[float, "SoCProfile"]): def __init__( self, profile_start, timestep_duration, elements: Optional[List[float]] = None ): self.profile_start = profile_start self.timestep_duration = timestep_duration - self.elements = elements if elements is not None else [] + super().__init__(profile_start, elements if elements is not None else []) def default_value(self) -> Optional[float]: return None diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index 8457aca..070a1ca 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -4,28 +4,30 @@ from .joule_range_profile import JouleRangeProfile from .proposal import Proposal + class CongestionPointPlanner: def __init__(self, congestion_point_id: str, congestion_target: JouleRangeProfile): """Initialize a congestion point planner. - + Args: + congestion_point_id: Unique identifier for this congestion point congestion_target: Target profile with range constraints for this congestion point """ self.congestion_point_id = congestion_point_id self.congestion_target = congestion_target self.profile_metadata = congestion_target.get_profile_metadata() - + # Create an empty profile (using all zeros) self.empty_profile = JouleProfile( self.profile_metadata.get_profile_start(), self.profile_metadata.get_timestep_duration(), - elements=[0] * self.profile_metadata.nr_of_timesteps + elements=[0] * self.profile_metadata.nr_of_timesteps, ) - + # List of device controllers that can be used for planning self.devices = [] - + # Keep track of accepted and latest plans self.accepted_plan = self.empty_profile self.latest_plan = self.empty_profile @@ -41,10 +43,10 @@ def is_storage_available(self) -> bool: def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: """Create an initial plan for this congestion point. - + Args: plan_due_by_date: The date by which the plan must be ready - + Returns: A JouleProfile representing the initial plan """ @@ -52,7 +54,9 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: # Aggregate initial plans from all devices for device in self.devices: - current_planning = current_planning.add(device.create_initial_planning(plan_due_by_date)) + current_planning = current_planning.add( + device.create_initial_planning(plan_due_by_date) + ) # Check if the current planning is within the congestion target range if self.congestion_target.is_within_range(current_planning): @@ -69,8 +73,12 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: print(f"Optimizing priority class: {priority_class}") while True: best_proposal = None - diff_to_max = self.congestion_target.difference_with_max_value(current_planning) - diff_to_min = self.congestion_target.difference_with_min_value(current_planning) + diff_to_max = self.congestion_target.difference_with_max_value( + current_planning + ) + diff_to_min = self.congestion_target.difference_with_min_value( + current_planning + ) # Try to get improved plans from each device controller for device in self.devices: @@ -80,24 +88,39 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: self.empty_profile, # Assuming empty global target diff_to_max, diff_to_min, - plan_due_by_date + plan_due_by_date, + ) + print( + f"congestion impr for '{device.get_device_id()}': {proposal.get_congestion_improvement_value()}" ) - print(f"congestion impr for '{device.get_device_id()}': {proposal.get_congestion_improvement_value()}") - if best_proposal is None or proposal.get_congestion_improvement_value() > best_proposal.get_congestion_improvement_value(): + if ( + best_proposal is None + or proposal.get_congestion_improvement_value() + > best_proposal.get_congestion_improvement_value() + ): best_proposal = proposal except Exception as e: - print(f"Error getting proposal from device {device.get_device_id()}: {e}") + print( + f"Error getting proposal from device {device.get_device_id()}: {e}" + ) continue - if best_proposal is None or best_proposal.get_congestion_improvement_value() <= 0: + if ( + best_proposal is None + or best_proposal.get_congestion_improvement_value() <= 0 + ): break # Update the current planning based on the best proposal - current_planning = current_planning.subtract(best_proposal.get_old_plan()).add(best_proposal.get_proposed_plan()) + current_planning = current_planning.subtract( + best_proposal.get_old_plan() + ).add(best_proposal.get_proposed_plan()) best_proposal.get_origin().accept_proposal(best_proposal) i += 1 - print(f"Initial planning '{self.congestion_point_id}': best controller '{best_proposal.get_origin().get_device_id()}' with congestion improvement of {best_proposal.get_congestion_improvement_value()}. Iteration {i}.") + print( + f"Initial planning '{self.congestion_point_id}': best controller '{best_proposal.get_origin().get_device_id()}' with congestion improvement of {best_proposal.get_congestion_improvement_value()}. Iteration {i}." + ) if i >= self.MAX_ITERATIONS: break @@ -105,20 +128,20 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: return current_planning def create_improved_planning( - self, + self, difference_profile: JouleProfile, target_metadata: any, priority_class: int, - plan_due_by_date: datetime + plan_due_by_date: datetime, ) -> Optional[Proposal]: """Create an improved plan based on the difference profile. - + Args: difference_profile: The difference between target and current planning target_metadata: Metadata about the target profile priority_class: Priority class for this planning iteration plan_due_by_date: The date by which the plan must be ready - + Returns: A Proposal object if an improvement was found, None otherwise """ @@ -126,8 +149,12 @@ def create_improved_planning( current_planning = self.get_current_planning() - diff_to_max_value = self.congestion_target.difference_with_max_value(current_planning) - diff_to_min_value = self.congestion_target.difference_with_min_value(current_planning) + diff_to_max_value = self.congestion_target.difference_with_max_value( + current_planning + ) + diff_to_min_value = self.congestion_target.difference_with_min_value( + current_planning + ) # Try to get improved plans from each device controller for device in self.devices: @@ -138,24 +165,34 @@ def create_improved_planning( difference_profile, diff_to_max_value, diff_to_min_value, - plan_due_by_date + plan_due_by_date, ) if proposal.get_congestion_improvement_value() < 0: - print(f"{device.get_device_name()}, congestion improvement: {proposal.get_congestion_improvement_value()}") - + print( + f"{device.get_device_name()}, congestion improvement: {proposal.get_congestion_improvement_value()}" + ) + if best_proposal is None or proposal.is_preferred_to(best_proposal): best_proposal = proposal except Exception as e: - print(f"Error getting proposal from device {device.get_device_id()}: {e}") + print( + f"Error getting proposal from device {device.get_device_id()}: {e}" + ) continue if best_proposal is None: - print(f"CP '{self.congestion_point_id}': No proposal available at current priority level ({priority_class})") + print( + f"CP '{self.congestion_point_id}': No proposal available at current priority level ({priority_class})" + ) else: - if best_proposal.get_congestion_improvement_value() == float('-inf'): - raise ValueError("Invalid proposal with negative infinity improvement value") + if best_proposal.get_congestion_improvement_value() == float("-inf"): + raise ValueError( + "Invalid proposal with negative infinity improvement value" + ) - print(f"CP '{self.congestion_point_id}': Selected best controller '{best_proposal.get_origin().get_device_name()}' with improvement of {best_proposal.get_global_improvement_value()}.") + print( + f"CP '{self.congestion_point_id}': Selected best controller '{best_proposal.get_origin().get_device_name()}' with improvement of {best_proposal.get_global_improvement_value()}." + ) return best_proposal @@ -174,7 +211,7 @@ def add_device_controller(self, device): def get_device_controllers(self) -> List[DevicePlanner]: """Get the list of device controllers.""" return self.devices - + def max_priority_class(self) -> int: """Get the maximum priority class among all devices.""" if not self.devices: diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py b/flexmeasures_s2/profile_steering/device_planner/__init__.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/__init__.py rename to flexmeasures_s2/profile_steering/device_planner/__init__.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/device_planner/device_planner.py similarity index 68% rename from flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py rename to flexmeasures_s2/profile_steering/device_planner/device_planner.py index 6b8b4b3..2dc36c6 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/device_planner.py @@ -1,68 +1,79 @@ from datetime import datetime from typing import Optional +from abc import ABC, abstractmethod from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.proposal import Proposal -class DevicePlanner: + +class DevicePlanner(ABC): + @abstractmethod def get_device_id(self) -> str: """Get the device ID.""" - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def get_device_name(self) -> str: """Get the device name.""" - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def get_connection_id(self) -> str: """Get the connection ID.""" - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def create_improved_planning( self, cluster_diff_profile: JouleProfile, diff_to_max_profile: JouleProfile, diff_to_min_profile: JouleProfile, - plan_due_by_date: datetime + plan_due_by_date: datetime, ) -> Proposal: """Create an improved planning proposal. - + Args: cluster_diff_profile: The difference profile for the cluster diff_to_max_profile: The difference to the maximum profile diff_to_min_profile: The difference to the minimum profile plan_due_by_date: The date by which the plan must be ready - + Returns: A Proposal object representing the improved plan """ - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: """Create an initial planning profile. - + Args: plan_due_by_date: The date by which the plan must be ready - + Returns: A JouleProfile representing the initial plan """ - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def accept_proposal(self, accepted_proposal: Proposal): """Accept a proposal and update the device's planning. - + Args: accepted_proposal: The proposal to accept """ - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def get_current_profile(self) -> JouleProfile: """Get the current profile of the device.""" - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def get_device_plan(self) -> Optional[JouleProfile]: """Get the device plan.""" - raise NotImplementedError("This method should be overridden by subclasses.") + pass + @abstractmethod def get_priority_class(self) -> int: """Get the priority class of the device.""" - raise NotImplementedError("This method should be overridden by subclasses.") + pass diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_controller.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_controller.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_controller.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py similarity index 90% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index c189fa1..6ded86a 100644 --- a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -1,14 +1,16 @@ from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner -from operation_mode_profile_tree import OperationModeProfileTree -from common.joule_profile import JouleProfile -from common.proposal import Proposal -from common.target_profile import TargetProfile -from s2_frbc_plan import S2FrbcPlan -from s2_frbc_instruction_profile import S2FrbcInstructionProfile +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( + S2FrbcInstructionProfile, +) -class S2FrbcDevicePlanner: +class S2FrbcDevicePlanner(DevicePlanner): def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): self.s2_frbc_state = s2_frbc_state self.profile_metadata = profile_metadata diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_device_state_wrapper.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_insight_profile.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_insight_profile.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_insight_profile.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_instruction_profile.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py diff --git a/flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/device_planner/frbc/s2_frbc_plan.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py diff --git a/flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py b/flexmeasures_s2/profile_steering/frbc/s2_actuator_configuration.py similarity index 100% rename from flexmeasures_s2/profile_steering/s2_utils/s2_actuator_configuration.py rename to flexmeasures_s2/profile_steering/frbc/s2_actuator_configuration.py diff --git a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py index e1447c0..d3a4ca3 100644 --- a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py +++ b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py @@ -8,7 +8,18 @@ class SelectionReason: class SelectionResult: - def __init__(self, result: bool, reason: SelectionReason, timestep: int, system_description: str, previous_state: str, actuator_configurations: str, fill_level: float, bucket: str, timestep_energy: float): + def __init__( + self, + result: bool, + reason: SelectionReason, + timestep: int, + system_description: str, + previous_state: str, + actuator_configurations: str, + fill_level: float, + bucket: str, + timestep_energy: float, + ): self.result = result self.reason = reason self.timestep = timestep @@ -18,7 +29,7 @@ def __init__(self, result: bool, reason: SelectionReason, timestep: int, system_ self.fill_level = fill_level self.bucket = bucket self.timestep_energy = timestep_energy - + def get_timestep(self): return self.timestep diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py index 5264ed9..859740d 100644 --- a/flexmeasures_s2/profile_steering/root_planner.py +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -4,10 +4,17 @@ from .congestion_point_planner import CongestionPointPlanner from .proposal import Proposal + class RootPlanner: MAX_ITERATIONS = 1000 - def __init__(self, target: Any, energy_iteration_criterion: float, cost_iteration_criterion: float, context: Any): + def __init__( + self, + target: Any, + energy_iteration_criterion: float, + cost_iteration_criterion: float, + context: Any, + ): """ target: An object that provides a profile. It must support a method get_profile_start(), @@ -24,7 +31,7 @@ def __init__(self, target: Any, energy_iteration_criterion: float, cost_iteratio self.empty_profile = JouleProfile( self.target.get_profile_start(), self.target.timestep_duration, - elements=[0] * self.target.nr_of_timesteps + elements=[0] * self.target.nr_of_timesteps, ) self.cp_controllers: List[CongestionPointPlanner] = [] self.root_ctrl_planning = self.empty_profile @@ -43,34 +50,46 @@ def get_congestion_point_controller(self, cp_id: str) -> CongestionPointPlanner: return cp return None - def plan(self, plan_due_by_date: datetime, optimize_for_target: bool, max_priority_class_external: int, multithreaded: bool = False): + def plan( + self, + plan_due_by_date: datetime, + optimize_for_target: bool, + max_priority_class_external: int, + multithreaded: bool = False, + ): # Compute an initial plan by summing each congestion point's initial planning. self.root_ctrl_planning = self.empty_profile for cpc in self.cp_controllers: initial_plan = cpc.create_initial_planning(plan_due_by_date) self.root_ctrl_planning = self.root_ctrl_planning.add(initial_plan) - + if not optimize_for_target: return - + if not self.cp_controllers: return - + # Determine maximum and minimum priority classes across congestion points. - max_priority_class = max(cpc.max_priority_class() for cpc in self.cp_controllers) - min_priority_class = min(cpc.min_priority_class() for cpc in self.cp_controllers) - + max_priority_class = max( + cpc.max_priority_class() for cpc in self.cp_controllers + ) + min_priority_class = min( + cpc.min_priority_class() for cpc in self.cp_controllers + ) + # Iterate over the priority classes. - for priority_class in range(min_priority_class, min(max_priority_class, max_priority_class_external) + 1): + for priority_class in range( + min_priority_class, min(max_priority_class, max_priority_class_external) + 1 + ): i = 0 best_proposal = None - + # Simulate a do-while loop: we run at least once. while True: # Compute the difference profile difference_profile = self.target.subtract(self.root_ctrl_planning) best_proposal = None - + # Get proposals from each congestion point controller for cpc in self.cp_controllers: try: @@ -78,34 +97,49 @@ def plan(self, plan_due_by_date: datetime, optimize_for_target: bool, max_priori difference_profile, self.target.get_profile_metadata(), priority_class, - plan_due_by_date + plan_due_by_date, ) if proposal is not None: - if best_proposal is None or proposal.is_preferred_to(best_proposal): + if best_proposal is None or proposal.is_preferred_to( + best_proposal + ): best_proposal = proposal except Exception as e: print(f"Error getting proposal from controller: {e}") continue - + if best_proposal is None: # No proposal could be generated; exit inner loop. break - + # Update the root controller's planning based on the best proposal. - self.root_ctrl_planning = self.root_ctrl_planning.subtract(best_proposal.get_old_plan()) - self.root_ctrl_planning = self.root_ctrl_planning.add(best_proposal.get_proposed_plan()) - + self.root_ctrl_planning = self.root_ctrl_planning.subtract( + best_proposal.get_old_plan() + ) + self.root_ctrl_planning = self.root_ctrl_planning.add( + best_proposal.get_proposed_plan() + ) + # Let the origin device/controller accept the proposal. best_proposal.get_origin().accept_proposal(best_proposal) i += 1 - print(f"Root controller: selected best controller '{best_proposal.get_origin().get_device_name()}' with global energy impr {best_proposal.get_global_improvement_value()}, cost impr {best_proposal.get_cost_improvement_value()}, congestion impr {best_proposal.get_congestion_improvement_value()}, iteration {i}.") - + print( + f"Root controller: selected best controller '{best_proposal.get_origin().get_device_name()}' with global energy impr {best_proposal.get_global_improvement_value()}, cost impr {best_proposal.get_cost_improvement_value()}, congestion impr {best_proposal.get_congestion_improvement_value()}, iteration {i}." + ) + # Check stopping criteria: if improvement values are below thresholds or max iterations reached. - if ((best_proposal.get_global_improvement_value() <= self.energy_iteration_criterion and - best_proposal.get_cost_improvement_value() <= self.cost_iteration_criterion) - or i >= self.MAX_ITERATIONS): + if ( + best_proposal.get_global_improvement_value() + <= self.energy_iteration_criterion + and best_proposal.get_cost_improvement_value() + <= self.cost_iteration_criterion + ) or i >= self.MAX_ITERATIONS: break - - print(f"Optimizing priority class {priority_class} was done after {i} iterations.") + + print( + f"Optimizing priority class {priority_class} was done after {i} iterations." + ) if i >= self.MAX_ITERATIONS: - print(f"Warning: Optimization stopped due to iteration limit. Priority class: {priority_class}, Iterations: {i}") + print( + f"Warning: Optimization stopped due to iteration limit. Priority class: {priority_class}, Iterations: {i}" + ) From e29b40d04132f39994ccfbb99a07fd0242c02a29 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 12 Feb 2025 00:32:40 +0100 Subject: [PATCH 12/33] Fixed all errors Signed-off-by: Vlad Iftime --- flexmeasures_s2/api/somedata.py | 11 - .../common/abstract_profile.py | 37 ++- .../profile_steering/common/device_plan.py | 115 ------- .../common/device_planner/device_plan.py | 18 +- .../profile_steering/common/joule_profile.py | 123 ++++--- .../common/profile_metadata.py | 73 +++-- .../profile_steering/common/proposal.py | 66 ++-- .../s2_actuator_configuration.py | 0 .../profile_steering/common/soc_profile.py | 28 +- .../profile_steering/common/target_profile.py | 148 +++++---- .../device_planner/device_planner.py | 6 +- .../frbc/fill_level_target_util.py | 3 +- .../frbc/frbc_operation_mode_wrapper.py | 30 +- .../{ => device_planner}/frbc/frbc_state.py | 86 ++--- .../frbc/frbc_timestep.py | 52 +-- .../frbc/operation_mode_profile_tree.py | 88 +++-- .../frbc/s2_frbc_actuator_configuration.py | 7 +- .../frbc/s2_frbc_device_controller.py | 150 --------- .../frbc/s2_frbc_device_planner.py | 164 ++++++---- .../frbc/s2_frbc_device_state.py | 34 +- .../frbc/s2_frbc_device_state_wrapper.py | 162 ++++------ .../frbc/s2_frbc_insight_profile.py | 30 -- .../frbc/s2_frbc_instruction_profile.py | 4 +- .../device_planner/frbc/s2_frbc_plan.py | 12 +- .../frbc/selection_reason_result.py | 20 ++ .../frbc/usage_forecast_util.py | 3 +- .../profile_steering/frbc/__init__.py | 0 .../frbc/s2_frbc_device_controller.py | 150 --------- .../frbc/s2_frbc_device_planner.py | 166 ---------- .../frbc/s2_frbc_device_state.py | 56 ---- .../frbc/s2_frbc_device_state_wrapper.py | 305 ------------------ .../frbc/s2_frbc_instruction_profile.py | 34 -- .../profile_steering/frbc/s2_frbc_plan.py | 31 -- .../frbc/selection_reason_result.py | 73 ----- .../tests/test_frbc_device.py | 13 +- .../tests/test_frbc_planning.py | 17 +- flexmeasures_s2/scheduler/schemas.py | 3 +- 37 files changed, 728 insertions(+), 1590 deletions(-) delete mode 100755 flexmeasures_s2/api/somedata.py delete mode 100644 flexmeasures_s2/profile_steering/common/device_plan.py rename flexmeasures_s2/profile_steering/{frbc => common}/s2_actuator_configuration.py (100%) rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/fill_level_target_util.py (91%) rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/frbc_operation_mode_wrapper.py (68%) rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/frbc_state.py (84%) rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/frbc_timestep.py (77%) rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/operation_mode_profile_tree.py (72%) rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/s2_frbc_actuator_configuration.py (81%) delete mode 100644 flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_controller.py delete mode 100644 flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_insight_profile.py create mode 100644 flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py rename flexmeasures_s2/profile_steering/{ => device_planner}/frbc/usage_forecast_util.py (91%) delete mode 100644 flexmeasures_s2/profile_steering/frbc/__init__.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py delete mode 100644 flexmeasures_s2/profile_steering/frbc/selection_reason_result.py diff --git a/flexmeasures_s2/api/somedata.py b/flexmeasures_s2/api/somedata.py deleted file mode 100755 index 17608d9..0000000 --- a/flexmeasures_s2/api/somedata.py +++ /dev/null @@ -1,11 +0,0 @@ -from flask_security import auth_token_required -from flask_json import as_json - -from .. import flexmeasures_s2_api_bp - - -@flexmeasures_s2_api_bp.route("/somedata") -@auth_token_required -@as_json -def somedata(): - return dict(a=1, b=2) diff --git a/flexmeasures_s2/profile_steering/common/abstract_profile.py b/flexmeasures_s2/profile_steering/common/abstract_profile.py index 72657bf..8fae527 100644 --- a/flexmeasures_s2/profile_steering/common/abstract_profile.py +++ b/flexmeasures_s2/profile_steering/common/abstract_profile.py @@ -17,7 +17,9 @@ def __init__(self, profile_metadata: ProfileMetadata, elements: List[E]): def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): if elements is None: raise ValueError("elements cannot be null") - if (24 * 60 * 60 * 1000) % profile_metadata.get_timestep_duration().total_seconds() != 0: + if ( + 24 * 60 * 60 * 1000 + ) % profile_metadata.get_timestep_duration().total_seconds() != 0: raise ValueError("A day should be dividable by the timeStepDuration") if ( not self.start_of_current_aligned_date( @@ -26,7 +28,9 @@ def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): ) == profile_metadata.get_profile_start() ): - raise ValueError("The startTimeDuration should be aligned with the timeStepDuration") + raise ValueError( + "The startTimeDuration should be aligned with the timeStepDuration" + ) def get_profile_metadata(self) -> ProfileMetadata: return self.metadata @@ -35,7 +39,7 @@ def get_elements(self) -> List[E]: return self.elements def get_element_end_date_at(self, index: int) -> datetime: - return self.metadata.get_profile_start_at_timestep_nr(index + 1) + return self.metadata.get_profile_start_at_timestep(index + 1) def index_at(self, date: datetime) -> int: return self.metadata.get_starting_step_nr(date) @@ -54,19 +58,32 @@ def next_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime if ms_since_last_aligned_date == 0: return date else: - return date + timedelta(milliseconds=(time_step_duration_ms - ms_since_last_aligned_date)) + return date + timedelta( + milliseconds=(time_step_duration_ms - ms_since_last_aligned_date) + ) @staticmethod - def start_of_current_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime: - ms_since_last_aligned_date = (date.timestamp() * 1000) % time_step_duration.total_seconds() * 1000 + def start_of_current_aligned_date( + date: datetime, time_step_duration: timedelta + ) -> datetime: + ms_since_last_aligned_date = ( + (date.timestamp() * 1000) % time_step_duration.total_seconds() * 1000 + ) if ms_since_last_aligned_date == 0: return date else: - return datetime.fromtimestamp(date.timestamp() - ms_since_last_aligned_date / 1000) + return datetime.fromtimestamp( + date.timestamp() - ms_since_last_aligned_date / 1000 + ) @staticmethod - def end_of_current_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime: - return AbstractProfile.start_of_current_aligned_date(date, time_step_duration) + time_step_duration + def end_of_current_aligned_date( + date: datetime, time_step_duration: timedelta + ) -> datetime: + return ( + AbstractProfile.start_of_current_aligned_date(date, time_step_duration) + + time_step_duration + ) @staticmethod def get_start_of_day(date: datetime) -> datetime: @@ -82,4 +99,4 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> PT: @abstractmethod def is_compatible(self, other: PT) -> bool: - pass + return self.metadata == other.metadata diff --git a/flexmeasures_s2/profile_steering/common/device_plan.py b/flexmeasures_s2/profile_steering/common/device_plan.py deleted file mode 100644 index 622a658..0000000 --- a/flexmeasures_s2/profile_steering/common/device_plan.py +++ /dev/null @@ -1,115 +0,0 @@ -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile -from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile -from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -from typing import Optional - - -class DevicePlan: - def __init__( - self, - device_id: str, - device_name: str, - connection_id: str, - joule_profile: JouleProfile, - soc_profile: Optional[SoCProfile] = None, - extra_info: Optional[AbstractProfile] = None, - ): - self.device_id = device_id - self.device_name = device_name - self.connection_id = connection_id - self.joule_profile = joule_profile - self.soc_profile = soc_profile - self.extra_info_profile = extra_info - - if soc_profile and not soc_profile.is_compatible(joule_profile): - raise ValueError("The JouleProfile and the SoC Profile are not compatible") - if extra_info and not extra_info.is_compatible(joule_profile): - raise ValueError( - "The JouleProfile and the extra info profile for reflex are not compatible" - ) - - def get_joule_profile(self) -> JouleProfile: - return self.joule_profile - - def get_soc_profile(self) -> Optional[SoCProfile]: - return self.soc_profile - - def get_extra_info_profile(self) -> Optional[AbstractProfile]: - return self.extra_info_profile - - def get_extra_info_for_insights(self) -> Optional[InsightsProfile]: - return self.extra_info_for_insights - - def get_device_id(self) -> str: - return self.device_id - - def get_device_name(self) -> str: - return self.device_name - - def get_connection_id(self) -> str: - return self.connection_id - - def get_profile_metadata(self) -> ProfileMetadata: - return self.joule_profile.get_profile_metadata() - - def is_compatible(self, other: "DevicePlan") -> bool: - return self.joule_profile.is_compatible(other.joule_profile) - - def subprofile(self, new_start_date) -> "DevicePlan": - jp = self.joule_profile.subprofile(new_start_date) - sp = self.soc_profile.subprofile(new_start_date) if self.soc_profile else None - eip = ( - self.extra_info_profile.subprofile(new_start_date) - if self.extra_info_profile - else None - ) - eip_insights = ( - self.extra_info_for_insights.subprofile(new_start_date) - if self.extra_info_for_insights - else None - ) - return DevicePlan( - self.device_id, - self.device_name, - self.connection_id, - jp, - sp, - eip, - eip_insights, - ) - - def adjust_nr_of_elements(self, nr_of_elements: int) -> "DevicePlan": - jp = self.joule_profile.adjust_nr_of_elements(nr_of_elements) - sp = ( - self.soc_profile.adjust_nr_of_elements(nr_of_elements) - if self.soc_profile - else None - ) - eip = ( - self.extra_info_profile.adjust_nr_of_elements(nr_of_elements) - if self.extra_info_profile - else None - ) - eip_insights = ( - self.extra_info_for_insights.adjust_nr_of_elements(nr_of_elements) - if self.extra_info_for_insights - else None - ) - return DevicePlan( - self.device_id, - self.device_name, - self.connection_id, - jp, - sp, - eip, - eip_insights, - ) - - def __str__(self) -> str: - return ( - f"DevicePlan [deviceId={self.device_id}, deviceName={self.device_name}, " - f"connectionId={self.connection_id}, jouleProfile={self.joule_profile}, " - f"socProfile={self.soc_profile}, extraInfoProfile={self.extra_info_profile}, " - f"extraInfoForInsights={self.extra_info_for_insights}]" - ) diff --git a/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py b/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py index 3d072df..61d7d35 100644 --- a/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py +++ b/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py @@ -1,7 +1,9 @@ -from typing import Optional, List -from datetime import datetime from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile +from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( + S2FrbcInstructionProfile, +) + class DevicePlan: def __init__( @@ -10,7 +12,7 @@ def __init__( device_name: str, connection_id: str, energy_profile: JouleProfile, - fill_level_profile: Optional[JouleProfile], + fill_level_profile: SoCProfile, instruction_profile: S2FrbcInstructionProfile, ): self.device_id = device_id @@ -32,17 +34,15 @@ def get_connection_id(self) -> str: def get_energy_profile(self) -> JouleProfile: return self.energy_profile - def get_fill_level_profile(self) -> Optional[JouleProfile]: + def get_fill_level_profile(self) -> SoCProfile: return self.fill_level_profile def get_instruction_profile(self) -> S2FrbcInstructionProfile: return self.instruction_profile - def __str__(self) -> str: return ( f"DevicePlan(device_id={self.device_id}, device_name={self.device_name}, " f"connection_id={self.connection_id}, energy_profile={self.energy_profile}, " - f"fill_level_profile={self.fill_level_profile}, instruction_profile={self.instruction_profile}, " - f"insights_profile={self.insights_profile})" - ) + f"fill_level_profile={self.fill_level_profile}, instruction_profile={self.instruction_profile})" + ) diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py index bdf2a07..d7dce45 100644 --- a/flexmeasures_s2/profile_steering/common/joule_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -1,67 +1,122 @@ +from datetime import datetime, timedelta from typing import List, Optional +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -class JouleProfile: +class JouleProfile(AbstractProfile[int, "JouleProfile"]): def __init__( - self, profile_start, timestep_duration, elements: Optional[List[int]] = None + self, + profile_start: datetime, + timestep_duration: timedelta, + elements: Optional[List[int]] = None, ): - self.profile_start = profile_start - self.timestep_duration = timestep_duration - self.elements = elements if elements is not None else [] + metadata = ProfileMetadata( + profile_start, + timestep_duration, + nr_of_timesteps=len(elements) if elements else 0, + ) + super().__init__(metadata, elements if elements is not None else []) + + def validate(self, profile_metadata: ProfileMetadata, elements: List[int]): + super().validate(profile_metadata, elements) + # Add any JouleProfile-specific validation here if needed + + def subprofile(self, new_start_date: datetime) -> "JouleProfile": + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return JouleProfile( + new_start_date, self.metadata.get_timestep_duration(), new_elements + ) - def avg_power_at(self, date) -> Optional[float]: - element = self.element_at(date) - if element is None: - return None - return element / self.timestep_duration.total_seconds() - - def element_at(self, date) -> Optional[int]: - index = int( - (date - self.profile_start).total_seconds() - // self.timestep_duration.total_seconds() + def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleProfile": + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [0] * (nr_of_elements - len(self.elements)) + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + new_elements, ) - if 0 <= index < len(self.elements): - return self.elements[index] - return None + + def is_compatible(self, other: AbstractProfile) -> bool: + return ( + self.metadata.get_timestep_duration() + == other.get_profile_metadata().get_timestep_duration() + and len(self.elements) == len(other.get_elements()) + ) + + def avg_power_at(self, date: datetime) -> Optional[float]: + element = self.element_at(date) + return element / self.metadata.get_timestep_duration().total_seconds() def add(self, other: "JouleProfile") -> "JouleProfile": - self.check_compatibility(other) + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") summed_elements = [a + b for a, b in zip(self.elements, other.elements)] - return JouleProfile(self.profile_start, self.timestep_duration, summed_elements) + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + summed_elements, + ) def subtract(self, other: "JouleProfile") -> "JouleProfile": - self.check_compatibility(other) + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") diff_elements = [a - b for a, b in zip(self.elements, other.elements)] - return JouleProfile(self.profile_start, self.timestep_duration, diff_elements) + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + diff_elements, + ) def absolute_values(self) -> "JouleProfile": abs_elements = [abs(e) for e in self.elements] - return JouleProfile(self.profile_start, self.timestep_duration, abs_elements) + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + abs_elements, + ) def sum_quadratic_distance(self) -> float: - return sum(e**2 for e in self.elements if e is not None) + return sum(e ** 2 for e in self.elements if e is not None) def is_below_or_equal(self, other: "JouleProfile") -> bool: - self.check_compatibility(other) + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") return all( a <= b for a, b in zip(self.elements, other.elements) if b is not None ) def is_above_or_equal(self, other: "JouleProfile") -> bool: - self.check_compatibility(other) + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") return all( a >= b for a, b in zip(self.elements, other.elements) if b is not None ) def minimum(self, other: "JouleProfile") -> "JouleProfile": - self.check_compatibility(other) + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") min_elements = [min(a, b) for a, b in zip(self.elements, other.elements)] - return JouleProfile(self.profile_start, self.timestep_duration, min_elements) + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + min_elements, + ) def maximum(self, other: "JouleProfile") -> "JouleProfile": - self.check_compatibility(other) + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") max_elements = [max(a, b) for a, b in zip(self.elements, other.elements)] - return JouleProfile(self.profile_start, self.timestep_duration, max_elements) + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + max_elements, + ) def get_total_energy(self) -> int: return sum(self.elements) @@ -77,11 +132,5 @@ def get_energy_for_timestep(self, index: int) -> Optional[int]: return self.elements[index] return None - def check_compatibility(self, other: "JouleProfile"): - if self.timestep_duration != other.timestep_duration or len( - self.elements - ) != len(other.elements): - raise ValueError("Profiles are not compatible") - def __str__(self) -> str: - return f"JouleProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" + return f"JouleProfile(elements={self.elements}, profile_start={self.metadata.get_profile_start()}, timestep_duration={self.metadata.get_timestep_duration()})" diff --git a/flexmeasures_s2/profile_steering/common/profile_metadata.py b/flexmeasures_s2/profile_steering/common/profile_metadata.py index db09ce3..02194a0 100644 --- a/flexmeasures_s2/profile_steering/common/profile_metadata.py +++ b/flexmeasures_s2/profile_steering/common/profile_metadata.py @@ -1,12 +1,17 @@ from datetime import datetime, timedelta -from typing import Optional + class ProfileMetadata: NR_OF_TIMESTEPS_KEY = "nrOfTimesteps" TIMESTEP_DURATION_KEY = "timestepDurationMs" PROFILE_START_KEY = "profileStart" - def __init__(self, profile_start: datetime, timestep_duration: timedelta, nr_of_timesteps: int): + def __init__( + self, + profile_start: datetime, + timestep_duration: timedelta, + nr_of_timesteps: int, + ): self.profile_start = profile_start self.timestep_duration = timestep_duration self.nr_of_timesteps = nr_of_timesteps @@ -30,7 +35,9 @@ def get_profile_duration(self) -> timedelta: def get_profile_start_at_timestep(self, i: int) -> datetime: if i >= self.nr_of_timesteps or i < 0: - raise ValueError(f"Expected i to be between 0 <= i < {self.nr_of_timesteps} but was {i}") + raise ValueError( + f"Expected i to be between 0 <= i < {self.nr_of_timesteps} but was {i}" + ) return self.profile_start + self.timestep_duration * i def get_starting_step_nr(self, instant: datetime) -> int: @@ -43,40 +50,60 @@ def get_starting_step_nr(self, instant: datetime) -> int: timestep_duration_secs = self.timestep_duration.total_seconds() return int(duration_between_secs // timestep_duration_secs) - def is_aligned_with(self, other: 'ProfileMetadata') -> bool: - return (self.timestep_duration == other.timestep_duration and - (abs((self.profile_start - other.profile_start).total_seconds()) % - self.timestep_duration.total_seconds()) == 0) + def is_aligned_with(self, other: "ProfileMetadata") -> bool: + return ( + self.timestep_duration == other.timestep_duration + and ( + abs((self.profile_start - other.profile_start).total_seconds()) + % self.timestep_duration.total_seconds() + ) + == 0 + ) def to_dict(self) -> dict: return { self.PROFILE_START_KEY: int(self.profile_start.timestamp() * 1000), - self.TIMESTEP_DURATION_KEY: int(self.timestep_duration.total_seconds() * 1000), - self.NR_OF_TIMESTEPS_KEY: self.nr_of_timesteps + self.TIMESTEP_DURATION_KEY: int( + self.timestep_duration.total_seconds() * 1000 + ), + self.NR_OF_TIMESTEPS_KEY: self.nr_of_timesteps, } @staticmethod - def from_dict(data: dict) -> 'ProfileMetadata': - profile_start = datetime.fromtimestamp(data[ProfileMetadata.PROFILE_START_KEY] / 1000) - timestep_duration = timedelta(milliseconds=data[ProfileMetadata.TIMESTEP_DURATION_KEY]) + def from_dict(data: dict) -> "ProfileMetadata": + profile_start = datetime.fromtimestamp( + data[ProfileMetadata.PROFILE_START_KEY] / 1000 + ) + timestep_duration = timedelta( + milliseconds=data[ProfileMetadata.TIMESTEP_DURATION_KEY] + ) nr_of_timesteps = data[ProfileMetadata.NR_OF_TIMESTEPS_KEY] return ProfileMetadata(profile_start, timestep_duration, nr_of_timesteps) - def subprofile(self, new_start_date: datetime) -> 'ProfileMetadata': + def subprofile(self, new_start_date: datetime) -> "ProfileMetadata": if new_start_date < self.profile_start: - raise ValueError("The new start date should be after the current start date") + raise ValueError( + "The new start date should be after the current start date" + ) new_start_date = self.next_aligned_date(new_start_date, self.timestep_duration) - skipped_steps = int((new_start_date - self.profile_start).total_seconds() // self.timestep_duration.total_seconds()) + skipped_steps = int( + (new_start_date - self.profile_start).total_seconds() + // self.timestep_duration.total_seconds() + ) nr_of_elements = max(0, self.nr_of_timesteps - skipped_steps) return ProfileMetadata(new_start_date, self.timestep_duration, nr_of_elements) - def adjust_nr_of_elements(self, nr_of_elements: int) -> 'ProfileMetadata': - return ProfileMetadata(self.profile_start, self.timestep_duration, nr_of_elements) + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ProfileMetadata": + return ProfileMetadata( + self.profile_start, self.timestep_duration, nr_of_elements + ) @staticmethod def next_aligned_date(date: datetime, timestep_duration: timedelta) -> datetime: # Align the date to the next timestep - remainder = (date - datetime.min).total_seconds() % timestep_duration.total_seconds() + remainder = ( + date - datetime.min + ).total_seconds() % timestep_duration.total_seconds() if remainder == 0: return date return date + timedelta(seconds=(timestep_duration.total_seconds() - remainder)) @@ -84,9 +111,11 @@ def next_aligned_date(date: datetime, timestep_duration: timedelta) -> datetime: def __eq__(self, other: object) -> bool: if not isinstance(other, ProfileMetadata): return False - return (self.nr_of_timesteps == other.nr_of_timesteps and - self.profile_start == other.profile_start and - self.timestep_duration == other.timestep_duration) + return ( + self.nr_of_timesteps == other.nr_of_timesteps + and self.profile_start == other.profile_start + and self.timestep_duration == other.timestep_duration + ) def __hash__(self) -> int: - return hash((self.nr_of_timesteps, self.profile_start, self.timestep_duration)) + return hash((self.nr_of_timesteps, self.profile_start, self.timestep_duration)) diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py index 380bc3a..82887af 100644 --- a/flexmeasures_s2/profile_steering/common/proposal.py +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -1,6 +1,7 @@ from typing import Optional from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner # TODO: need a DevicePlanner class @@ -12,6 +13,7 @@ def __init__( diff_to_congestion_min: JouleProfile, proposed_plan: JouleProfile, old_plan: JouleProfile, + origin: DevicePlanner, ): self.global_diff_target = global_diff_target self.diff_to_congestion_max = diff_to_congestion_max @@ -21,52 +23,48 @@ def __init__( self.global_improvement_value: Optional[float] = None self.congestion_improvement_value: Optional[float] = None self.cost_improvement_value: Optional[float] = None + self.origin = origin def get_global_improvement_value(self) -> float: if self.global_improvement_value is None: self.global_improvement_value = ( self.global_diff_target.sum_quadratic_distance() - - self.global_diff_target.add(self.old_plan) - .subtract(self.proposed_plan) - .sum_quadratic_distance() + - self.global_diff_target.add(self.old_plan).subtract(self.proposed_plan).sum_quadratic_distance() ) return self.global_improvement_value - def get_cost_improvement_value(self) -> float: - if self.cost_improvement_value is None: - self.cost_improvement_value = self.get_cost( - self.old_plan, self.global_diff_target - ) - self.get_cost(self.proposed_plan, self.global_diff_target) - return self.cost_improvement_value + # def get_cost_improvement_value(self) -> float: + # if self.cost_improvement_value is None: + # self.cost_improvement_value = self.get_cost( + # self.old_plan, self.global_diff_target + # ) - self.get_cost(self.proposed_plan, self.global_diff_target) + # return self.cost_improvement_value - @staticmethod - def get_cost(plan: JouleProfile, target_profile: TargetProfile) -> float: - cost = 0.0 - for i in range(target_profile.get_profile_metadata().get_nr_of_timesteps()): - joule_usage = plan.get_elements()[i] - target_element = target_profile.get_elements()[i] - if isinstance(target_element, TargetProfile.TariffElement): - cost += (joule_usage / 3_600_000) * target_element.get_tariff() - return cost + # @staticmethod + # def get_cost(plan: JouleProfile, target_profile: TargetProfile) -> float: + # cost = 0.0 + # for i in range(target_profile.get_profile_metadata().get_nr_of_timesteps()): + # joule_usage = plan.get_elements()[i] + # target_element = target_profile.get_elements()[i] + # if isinstance(target_element, TargetProfile.TariffElement): + # cost += (joule_usage / 3_600_000) * target_element.get_tariff() + # return cost def get_congestion_improvement_value(self) -> float: if self.congestion_improvement_value is None: zero_profile = JouleProfile( - self.old_plan.get_profile_metadata(), + self.old_plan.get_profile_metadata().get_profile_start(), + self.old_plan.get_profile_metadata().get_timestep_duration(), [0] * len(self.old_plan.get_elements()), ) - exceed_max_target_old = self.diff_to_congestion_max.minimum( - zero_profile - ).sum_quadratic_distance() + exceed_max_target_old = self.diff_to_congestion_max.minimum(zero_profile).sum_quadratic_distance() exceed_max_target_proposal = ( self.diff_to_congestion_max.add(self.old_plan) .subtract(self.proposed_plan) .minimum(zero_profile) .sum_quadratic_distance() ) - exceed_min_target_old = self.diff_to_congestion_min.maximum( - zero_profile - ).sum_quadratic_distance() + exceed_min_target_old = self.diff_to_congestion_min.maximum(zero_profile).sum_quadratic_distance() exceed_min_target_proposal = ( self.diff_to_congestion_min.add(self.old_plan) .subtract(self.proposed_plan) @@ -89,16 +87,22 @@ def get_congestion_improvement_value(self) -> float: def is_preferred_to(self, other: "Proposal") -> bool: if self.get_congestion_improvement_value() >= 0: - if ( - self.get_global_improvement_value() - > other.get_global_improvement_value() - ): + if self.get_global_improvement_value() > other.get_global_improvement_value(): return True elif ( self.get_global_improvement_value() == other.get_global_improvement_value() - and self.get_cost_improvement_value() - > other.get_cost_improvement_value() + # and self.get_cost_improvement_value() + # > other.get_cost_improvement_value() ): return True return False + + def get_origin(self) -> DevicePlanner: + return self.origin + + def get_proposed_plan(self) -> JouleProfile: + return self.proposed_plan + + def get_old_plan(self) -> JouleProfile: + return self.old_plan diff --git a/flexmeasures_s2/profile_steering/frbc/s2_actuator_configuration.py b/flexmeasures_s2/profile_steering/common/s2_actuator_configuration.py similarity index 100% rename from flexmeasures_s2/profile_steering/frbc/s2_actuator_configuration.py rename to flexmeasures_s2/profile_steering/common/s2_actuator_configuration.py diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py index 63d0d8e..d8ce1b4 100644 --- a/flexmeasures_s2/profile_steering/common/soc_profile.py +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -1,11 +1,11 @@ from typing import List, Optional from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from datetime import datetime class SoCProfile(AbstractProfile[float, "SoCProfile"]): - def __init__( - self, profile_start, timestep_duration, elements: Optional[List[float]] = None - ): + def __init__(self, profile_start, timestep_duration, elements: Optional[List[float]] = None): self.profile_start = profile_start self.timestep_duration = timestep_duration super().__init__(profile_start, elements if elements is not None else []) @@ -15,3 +15,25 @@ def default_value(self) -> Optional[float]: def __str__(self) -> str: return f"SoCProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" + + def is_compatible(self, other: AbstractProfile) -> bool: + return self.metadata.get_timestep_duration() == other.get_profile_metadata().get_timestep_duration() and len( + self.elements + ) == len(other.get_elements()) + + def validate(self, profile_metadata: ProfileMetadata, elements: List[float]): + super().validate(profile_metadata, elements) + + def subprofile(self, new_start_date: datetime) -> "SoCProfile": + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return SoCProfile(new_start_date, self.metadata.get_timestep_duration(), new_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "SoCProfile": + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [0.0] * (nr_of_elements - len(self.elements)) + return SoCProfile(self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), new_elements) diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py index 9ca465a..2729a99 100644 --- a/flexmeasures_s2/profile_steering/common/target_profile.py +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -1,8 +1,11 @@ from typing import List, Union +from datetime import datetime, timedelta from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -class TargetProfile: +class TargetProfile(AbstractProfile[Union["TargetProfile.Element", None], "TargetProfile"]): class Element: pass @@ -16,75 +19,112 @@ def get_joules(self) -> int: class NullElement(Element): pass - NULL_ELEMENT = NullElement() + NULL_ELEMENT: "TargetProfile.Element" = NullElement() - def __init__(self, profile_start, timestep_duration, elements: List[Element]): - self.profile_start = profile_start - self.timestep_duration = timestep_duration - self.elements = elements + def __init__( + self, + profile_start: datetime, + timestep_duration: timedelta, + elements: List["TargetProfile.Element | None"], + ): + metadata = ProfileMetadata(profile_start, timestep_duration, len(elements)) + super().__init__(metadata, elements) - def get_total_energy(self) -> int: - return sum( - e.get_joules() - for e in self.elements - if isinstance(e, TargetProfile.JouleElement) + def validate(self, profile_metadata: ProfileMetadata, elements: List["TargetProfile.Element | None"]): + super().validate(profile_metadata, elements) + # Add any TargetProfile-specific validation if needed + + def subprofile(self, new_start_date: datetime) -> "TargetProfile": + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return TargetProfile(new_start_date, self.metadata.get_timestep_duration(), new_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "TargetProfile": + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [self.NULL_ELEMENT] * (nr_of_elements - len(self.elements)) + return TargetProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + new_elements, ) + def is_compatible(self, other: AbstractProfile) -> bool: + return self.metadata.get_timestep_duration() == other.get_profile_metadata().get_timestep_duration() and len( + self.elements + ) == len(other.get_elements()) + + def get_total_energy(self) -> int: + return sum(e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)) + def target_elements_to_joule_profile(self) -> JouleProfile: - joules = [ - e.get_joules() - for e in self.elements - if isinstance(e, TargetProfile.JouleElement) - ] - return JouleProfile(self.profile_start, self.timestep_duration, joules) + joules = [e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)] + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + joules, + ) def nr_of_joule_target_elements(self) -> int: - return len( - [e for e in self.elements if isinstance(e, TargetProfile.JouleElement)] - ) + return len([e for e in self.elements if isinstance(e, TargetProfile.JouleElement)]) def subtract(self, other: JouleProfile) -> "TargetProfile": - diff_elements = [] + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + diff_elements: List["TargetProfile.Element | None"] = [] for i, element in enumerate(self.elements): - if ( - isinstance(element, TargetProfile.JouleElement) - and other.get_energy_for_timestep(i) is not None - ): - diff_elements.append( - TargetProfile.JouleElement( - element.get_joules() - other.get_energy_for_timestep(i) - ) - ) - elif isinstance(element, TargetProfile.TariffElement): - diff_elements.append(element) + if isinstance(element, TargetProfile.JouleElement): + other_energy = other.get_energy_for_timestep(i) + if other_energy is not None: + diff_elements.append(TargetProfile.JouleElement(element.get_joules() - other_energy)) + else: + diff_elements.append(self.NULL_ELEMENT) else: - diff_elements.append(TargetProfile.NULL_ELEMENT) - return TargetProfile(self.profile_start, self.timestep_duration, diff_elements) + diff_elements.append(self.NULL_ELEMENT) + return TargetProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + diff_elements, + ) def add(self, other: JouleProfile) -> "TargetProfile": - sum_elements = [] + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + sum_elements: List["TargetProfile.Element | None"] = [] for i, element in enumerate(self.elements): - if ( - isinstance(element, TargetProfile.JouleElement) - and other.get_energy_for_timestep(i) is not None - ): - sum_elements.append( - TargetProfile.JouleElement( - element.get_joules() + other.get_energy_for_timestep(i) - ) - ) - elif isinstance(element, TargetProfile.TariffElement): - sum_elements.append(element) + if isinstance(element, TargetProfile.JouleElement): + other_energy = other.get_energy_for_timestep(i) + if other_energy is not None: + sum_elements.append(TargetProfile.JouleElement(element.get_joules() + other_energy)) + else: + sum_elements.append(self.NULL_ELEMENT) else: - sum_elements.append(TargetProfile.NULL_ELEMENT) - return TargetProfile(self.profile_start, self.timestep_duration, sum_elements) + sum_elements.append(self.NULL_ELEMENT) + return TargetProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + sum_elements, + ) def sum_quadratic_distance(self) -> float: - return sum( - e.get_joules() ** 2 - for e in self.elements - if isinstance(e, TargetProfile.JouleElement) - ) + return sum(e.get_joules() ** 2 for e in self.elements if isinstance(e, TargetProfile.JouleElement)) def __str__(self) -> str: - return f"TargetProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" + return f"TargetProfile(elements={self.elements}, profile_start={self.metadata.get_profile_start()}, timestep_duration={self.metadata.get_timestep_duration()})" + + def get_profile_metadata(self) -> ProfileMetadata: + return self.metadata + + def get_elements(self) -> List["TargetProfile.Element | None"]: + return self.elements + + @staticmethod + def null_profile(metadata: ProfileMetadata) -> "TargetProfile": + return TargetProfile( + metadata.get_profile_start(), + metadata.get_timestep_duration(), + [TargetProfile.NULL_ELEMENT] * metadata.get_nr_of_timesteps(), + ) diff --git a/flexmeasures_s2/profile_steering/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/device_planner/device_planner.py index 2dc36c6..24899ab 100644 --- a/flexmeasures_s2/profile_steering/device_planner/device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/device_planner.py @@ -3,6 +3,8 @@ from abc import ABC, abstractmethod from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.common.device_planner.device_plan import DevicePlan class DevicePlanner(ABC): @@ -24,7 +26,7 @@ def get_connection_id(self) -> str: @abstractmethod def create_improved_planning( self, - cluster_diff_profile: JouleProfile, + cluster_diff_profile: TargetProfile, diff_to_max_profile: JouleProfile, diff_to_min_profile: JouleProfile, plan_due_by_date: datetime, @@ -69,7 +71,7 @@ def get_current_profile(self) -> JouleProfile: pass @abstractmethod - def get_device_plan(self) -> Optional[JouleProfile]: + def get_device_plan(self) -> Optional[DevicePlan]: """Get the device plan.""" pass diff --git a/flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py similarity index 91% rename from flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py index c28839b..3e3d26c 100644 --- a/flexmeasures_s2/profile_steering/frbc/fill_level_target_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py @@ -1,5 +1,4 @@ -from datetime import datetime, timedelta -from s2python.frbc import FRBCFillLevelTargetProfile, FRBCFillLevelTargetProfileElement +from datetime import timedelta class FillLevelTargetElement: diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py similarity index 68% rename from flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py index 4946341..d4db751 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_operation_mode_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py @@ -1,11 +1,14 @@ from typing import List -from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( + NumberRangeWrapper, +) + class FrbcOperationModeElementWrapper: def __init__(self, frbc_operation_mode_element): self.fill_rate = NumberRangeWrapper( frbc_operation_mode_element.get_fill_rate().get_start_of_range(), - frbc_operation_mode_element.get_fill_rate().get_end_of_range() + frbc_operation_mode_element.get_fill_rate().get_end_of_range(), ) self.power_ranges = [ NumberRangeWrapper(pr.get_start_of_range(), pr.get_end_of_range()) @@ -31,12 +34,27 @@ def __init__(self, frbc_operation_mode): self.uses_factor = self.calculate_uses_factor() def calculate_uses_factor(self) -> bool: - from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper + from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, + ) + for element in self.elements: - if abs(element.get_fill_rate().get_start_of_range() - element.get_fill_rate().get_end_of_range()) > S2FrbcDeviceStateWrapper.epsilon: + if ( + abs( + element.get_fill_rate().get_start_of_range() + - element.get_fill_rate().get_end_of_range() + ) + > S2FrbcDeviceStateWrapper.epsilon + ): return True for power_range in element.get_power_ranges(): - if abs(power_range.get_start_of_range() - power_range.get_end_of_range()) > S2FrbcDeviceStateWrapper.epsilon: + if ( + abs( + power_range.get_start_of_range() + - power_range.get_end_of_range() + ) + > S2FrbcDeviceStateWrapper.epsilon + ): return True return False @@ -44,4 +62,4 @@ def get_elements(self) -> List[FrbcOperationModeElementWrapper]: return self.elements def is_uses_factor(self) -> bool: - return self.uses_factor + return self.uses_factor diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py similarity index 84% rename from flexmeasures_s2/profile_steering/frbc/frbc_state.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 315ac4e..c918cdf 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -1,15 +1,19 @@ -import logging -from datetime import datetime, timedelta +from datetime import datetime from s2python.frbc import ( FRBCSystemDescription, ) from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) -from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration -from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep -from flexmeasures_s2.profile_steering.frbc.selection_reason_result import SelectionResult, SelectionReason +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( + SelectionResult, + SelectionReason, +) from typing import Dict, Optional @@ -32,12 +36,12 @@ def __init__( self.system_description.get_storage().get_status().get_present_fill_level() ) self.bucket = 0 - self.timestep_energy = 0 - self.sum_squared_distance = 0 - self.sum_squared_constraint_violation = 0 - self.sum_energy_cost = 0 - self.sum_squared_energy = 0 - self.selection_reason = None + self.timestep_energy = 0.0 + self.sum_squared_distance = 0.0 + self.sum_squared_constraint_violation = 0.0 + self.sum_energy_cost = 0.0 + self.sum_squared_energy = 0.0 + self.selection_reason: Optional[SelectionReason] = None self.actuator_configurations = actuator_configurations or {} self.timer_elapse_map = ( self.get_initial_timer_elapse_map_for_system_description( @@ -54,7 +58,7 @@ def __init__( ) self.actuator_configurations[actuator.get_id()] = actuator_config else: - self.calculate_state_values(previous_state, actuator_configurations) + self.calculate_state_values(previous_state, self.actuator_configurations) @staticmethod def get_initial_timer_elapse_map_for_system_description( @@ -73,7 +77,7 @@ def calculate_state_values( previous_state: "FrbcState", actuator_configurations: Dict[str, S2ActuatorConfiguration], ): - self.timestep_energy = 0 + self.timestep_energy = 0.0 self.fill_level = previous_state.get_fill_level() seconds = self.timestep.get_duration_seconds() for actuator_id, actuator_configuration in actuator_configurations.items(): @@ -134,6 +138,8 @@ def update_timers( previous_operation_mode_id, new_operation_mode_id, ) + if transition is None: + continue for timer_id in transition.get_start_timers(): duration = S2FrbcDeviceStateWrapper.get_timer_duration( self.timestep, actuator_id, timer_id @@ -157,12 +163,7 @@ def calculate_scores(self, previous_state: "FrbcState"): + (target.get_joules() - self.timestep_energy) ** 2 ) self.sum_energy_cost = previous_state.get_sum_energy_cost() - elif isinstance(target, TargetProfile.TariffElement): - self.sum_squared_distance = previous_state.get_sum_squared_distance() - self.sum_energy_cost = ( - previous_state.get_sum_energy_cost() - + target.get_tariff() * (self.timestep_energy / 3_600_000) - ) + else: self.sum_squared_distance = previous_state.get_sum_squared_distance() self.sum_energy_cost = previous_state.get_sum_energy_cost() @@ -188,7 +189,7 @@ def calculate_scores(self, previous_state: "FrbcState"): + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy**2 + previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 ) @staticmethod @@ -259,30 +260,31 @@ def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: >= self.constraint_epsilon ): return SelectionResult( - self.sum_squared_constraint_violation + result=self.sum_squared_constraint_violation < other_state.get_sum_squared_constraint_violation(), - SelectionReason.CONGESTION_CONSTRAINT, + reason=SelectionReason.CONGESTION_CONSTRAINT, ) elif ( abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) >= self.constraint_epsilon ): return SelectionResult( - self.sum_squared_distance < other_state.get_sum_squared_distance(), - SelectionReason.ENERGY_TARGET, + result=self.sum_squared_distance + < other_state.get_sum_squared_distance(), + reason=SelectionReason.ENERGY_TARGET, ) elif ( abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) >= self.tariff_epsilon ): return SelectionResult( - self.sum_energy_cost < other_state.get_sum_energy_cost(), - SelectionReason.TARIFF_TARGET, + result=self.sum_energy_cost < other_state.get_sum_energy_cost(), + reason=SelectionReason.TARIFF_TARGET, ) else: return SelectionResult( - self.sum_squared_energy < other_state.get_sum_squared_energy(), - SelectionReason.MIN_ENERGY, + result=self.sum_squared_energy < other_state.get_sum_squared_energy(), + reason=SelectionReason.MIN_ENERGY, ) def is_within_fill_level_range(self): @@ -308,32 +310,38 @@ def get_previous_state(self): def get_actuator_configurations(self): return self.actuator_configurations - def get_fill_level(self): + def get_fill_level(self) -> float: return self.fill_level - def get_bucket(self): + def get_bucket(self) -> int: return self.bucket - def get_timestep_energy(self): + def get_timestep_energy(self) -> float: return self.timestep_energy - def get_sum_squared_distance(self): + def get_sum_squared_distance(self) -> float: return self.sum_squared_distance - def get_sum_squared_constraint_violation(self): + def get_sum_squared_constraint_violation(self) -> float: return self.sum_squared_constraint_violation - def get_sum_energy_cost(self): + def get_sum_energy_cost(self) -> float: return self.sum_energy_cost - def get_sum_squared_energy(self): + def get_sum_squared_energy(self) -> float: return self.sum_squared_energy - def get_timer_elapse_map(self): + def get_timer_elapse_map(self) -> Dict[str, datetime]: return self.timer_elapse_map - def set_selection_reason(self, selection_reason: SelectionReason): + def set_selection_reason(self, selection_reason): self.selection_reason = selection_reason - def get_selection_reason(self): + def get_selection_reason(self) -> Optional[SelectionReason]: return self.selection_reason + + def get_system_description(self) -> FRBCSystemDescription: + return self.system_description + + def get_timestep(self) -> FrbcTimestep: + return self.timestep diff --git a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py similarity index 77% rename from flexmeasures_s2/profile_steering/frbc/frbc_timestep.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index 76b73ee..4bd9f5f 100644 --- a/flexmeasures_s2/profile_steering/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -1,11 +1,26 @@ from datetime import datetime, timedelta -from typing import List, Optional, Union +from typing import List, Optional +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour -from flexmeasures_s2.profile_steering.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from enum import Enum + + +class SelectionReason(Enum): + NO_ALTERNATIVE = "NA" + EMERGENCY_STATE = "ES" + CONGESTION_CONSTRAINT = "CC" + ENERGY_TARGET = "ET" + TARIFF_TARGET = "TT" + MIN_ENERGY = "ME" + + @property + def abbr(self) -> str: + return self.value -def SelectionReason(enum): - NO_ALTERNATIVE = 0 - EMERGENCY_STATE = 1 class FrbcTimestep: def __init__( @@ -14,9 +29,9 @@ def __init__( end_date: datetime, system_description: FRBCSystemDescription, leakage_behaviour: FRBCLeakageBehaviour, - fill_level_target: Optional[float], + fill_level_target: Optional[NumberRangeWrapper], forecasted_fill_level_usage: float, - computational_parameters: object, + computational_parameters: S2FrbcDeviceState.ComputationalParameters, ): self.nr_of_buckets: int = computational_parameters.get_nr_of_buckets() self.start_date: datetime = start_date @@ -24,7 +39,7 @@ def __init__( self.duration: timedelta = end_date - start_date self.system_description: FRBCSystemDescription = system_description self.leakage_behaviour: FRBCLeakageBehaviour = leakage_behaviour - self.fill_level_target: Optional[float] = fill_level_target + self.fill_level_target: Optional[NumberRangeWrapper] = fill_level_target self.forecasted_fill_level_usage: float = forecasted_fill_level_usage self.state_list: List[Optional[FrbcState]] = [None] * (self.nr_of_buckets + 1) self.emergency_state: Optional[FrbcState] = None @@ -47,14 +62,11 @@ def add_state(self, state: FrbcState) -> None: selection_result = state.is_preferable_than(stored_state) if selection_result.result: self.state_list[state.get_bucket()] = state - self.state_list[state.get_bucket()].set_selection_reason( - selection_result.reason - ) + self.state_list[state.get_bucket()].set_selection_reason(selection_result.reason) # type: ignore else: if ( self.emergency_state is None - or state.get_fill_level_distance() - < self.emergency_state.get_fill_level_distance() + or state.get_fill_level_distance() < self.emergency_state.get_fill_level_distance() ): self.emergency_state = state state.set_selection_reason(SelectionReason.EMERGENCY_STATE) @@ -90,7 +102,7 @@ def get_min_constraint(self) -> float: def get_max_constraint(self) -> float: return self.max_constraint - def get_fill_level_target(self) -> Optional[float]: + def get_fill_level_target(self) -> Optional[NumberRangeWrapper]: return self.fill_level_target def get_state_list(self) -> List[Optional[FrbcState]]: @@ -98,7 +110,7 @@ def get_state_list(self) -> List[Optional[FrbcState]]: def get_final_states(self) -> List[FrbcState]: final_states = [state for state in self.state_list if state is not None] - if not final_states: + if not final_states and self.emergency_state is not None: return [self.emergency_state] return final_states @@ -106,14 +118,10 @@ def get_final_states_within_fill_level_target(self) -> List[FrbcState]: final_states = self.get_final_states() if self.fill_level_target is None: return final_states - final_states = [ - s for s in final_states if self.state_is_within_fill_level_target_range(s) - ] + final_states = [s for s in final_states if self.state_is_within_fill_level_target_range(s)] if final_states: return final_states - best_state = min( - self.get_final_states(), key=self.get_fill_level_target_distance - ) + best_state = min(self.get_final_states(), key=self.get_fill_level_target_distance) return [best_state] def state_is_within_fill_level_target_range(self, state: FrbcState) -> bool: @@ -128,6 +136,8 @@ def state_is_within_fill_level_target_range(self, state: FrbcState) -> bool: ) def get_fill_level_target_distance(self, state: FrbcState) -> float: + if self.fill_level_target is None: + return 0 if ( self.fill_level_target.get_end_of_range() is None or state.get_fill_level() < self.fill_level_target.get_start_of_range() diff --git a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py similarity index 72% rename from flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index ab79708..d4f8914 100644 --- a/flexmeasures_s2/profile_steering/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -1,19 +1,24 @@ from datetime import datetime, timedelta from typing import List, Optional, Any -from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) -from flexmeasures_s2.profile_steering.frbc.frbc_state import FrbcState -from flexmeasures_s2.profile_steering.frbc.fill_level_target_util import FillLevelTargetUtil -from flexmeasures_s2.profile_steering.frbc.usage_forecast_util import UsageForecastUtil -from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper -from flexmeasures_s2.profile_steering.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.fill_level_target_util import ( + FillLevelTargetUtil, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.usage_forecast_util import UsageForecastUtil +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( + NumberRangeWrapper, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState from pint import UnitRegistry SI = UnitRegistry() @@ -24,25 +29,21 @@ class OperationModeProfileTree: def __init__( self, - device_state: S2FrbcDeviceStateWrapper, + device_state: S2FrbcDeviceState, profile_metadata: ProfileMetadata, plan_due_by_date: datetime, ): self.device_state = S2FrbcDeviceStateWrapper(device_state) self.profile_metadata = profile_metadata self.plan_due_by_date = plan_due_by_date - self.timestep_duration_seconds = int( - profile_metadata.get_timestep_duration().total_seconds() - ) + self.timestep_duration_seconds = int(profile_metadata.get_timestep_duration().total_seconds()) self.timesteps: List[FrbcTimestep] = [] self.generate_timesteps() def generate_timesteps(self) -> None: time_step_start = self.profile_metadata.get_profile_start() for i in range(self.profile_metadata.get_nr_of_timesteps()): - time_step_end = ( - time_step_start + self.profile_metadata.get_timestep_duration() - ) + time_step_end = time_step_start + self.profile_metadata.get_timestep_duration() if i == 0: time_step_start = self.plan_due_by_date time_step_start_dt = time_step_start @@ -63,11 +64,7 @@ def generate_timesteps(self) -> None: ) current_fill_level_target = None if current_fill_level: - current_fill_level_target = ( - FillLevelTargetUtil.from_fill_level_target_profile( - current_fill_level - ) - ) + current_fill_level_target = FillLevelTargetUtil.from_fill_level_target_profile(current_fill_level) fill_level_target = self.get_fill_level_target_for_timestep( current_fill_level_target, time_step_start, time_step_end ) @@ -78,9 +75,7 @@ def generate_timesteps(self) -> None: ) current_usage_forecast_profile = None if current_usage_forecast: - current_usage_forecast_profile = ( - UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) - ) + current_usage_forecast_profile = UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) usage_forecast = self.get_usage_forecast_for_timestep( current_usage_forecast_profile, time_step_start, time_step_end ) @@ -106,8 +101,7 @@ def get_latest_before(before: datetime, select_from: List[Any], get_date_time: A if current: current_date_time = get_date_time(current) if current_date_time <= before and ( - latest_before is None - or current_date_time > latest_before_date_time + latest_before is None or current_date_time > latest_before_date_time ): latest_before = current latest_before_date_time = current_date_time @@ -115,29 +109,29 @@ def get_latest_before(before: datetime, select_from: List[Any], get_date_time: A @staticmethod def get_fill_level_target_for_timestep( - fill_level_target_profile: Optional[Any], time_step_start: datetime, time_step_end: datetime + fill_level_target_profile: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, ) -> Optional[NumberRangeWrapper]: if not fill_level_target_profile: return None time_step_end -= timedelta(milliseconds=1) lower, upper = None, None - for e in fill_level_target_profile.get_elements_in_range( - time_step_start, time_step_end - ): - if e.get_lower_limit() is not None and ( - lower is None or e.get_lower_limit() > lower - ): + for e in fill_level_target_profile.get_elements_in_range(time_step_start, time_step_end): + if e.get_lower_limit() is not None and (lower is None or e.get_lower_limit() > lower): lower = e.get_lower_limit() - if e.get_upper_limit() is not None and ( - upper is None or e.get_upper_limit() < upper - ): + if e.get_upper_limit() is not None and (upper is None or e.get_upper_limit() < upper): upper = e.get_upper_limit() if lower is None and upper is None: return None return NumberRangeWrapper(lower, upper) @staticmethod - def get_usage_forecast_for_timestep(usage_forecast: Optional[Any], time_step_start: datetime, time_step_end: datetime) -> float: + def get_usage_forecast_for_timestep( + usage_forecast: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, + ) -> float: if not usage_forecast: return 0 time_step_end -= timedelta(milliseconds=1) @@ -169,9 +163,7 @@ def find_best_plan(self, target_profile: Any, diff_to_min_profile: Any, diff_to_ final_states = current_timestep.get_final_states_within_fill_level_target() for frbc_state in final_states: frbc_state.generate_next_timestep_states(next_timestep) - end_state = self.find_best_end_state( - last_timestep.get_final_states_within_fill_level_target() - ) + end_state = self.find_best_end_state(last_timestep.get_final_states_within_fill_level_target()) return self.convert_to_plan(first_timestep_index, end_state) @staticmethod @@ -183,18 +175,18 @@ def find_best_end_state(states: List[FrbcState]) -> FrbcState: return best_state def convert_to_plan(self, first_timestep_index_with_state: int, end_state: FrbcState) -> S2FrbcPlan: - energy = [None] * self.profile_metadata.get_nr_of_timesteps() - fill_level = [None] * self.profile_metadata.get_nr_of_timesteps() - actuators = [None] * self.profile_metadata.get_nr_of_timesteps() + energy: List[int] = [0] * self.profile_metadata.get_nr_of_timesteps() + fill_level: List[float] = [0.0] * self.profile_metadata.get_nr_of_timesteps() + actuators: List[dict] = [{}] * self.profile_metadata.get_nr_of_timesteps() insight_elements = [None] * self.profile_metadata.get_nr_of_timesteps() - state_selection_reasons = [""] * self.profile_metadata.get_nr_of_timesteps() + state_selection_reasons: List[str] = [""] * self.profile_metadata.get_nr_of_timesteps() state = end_state for i in range(self.profile_metadata.get_nr_of_timesteps() - 1, -1, -1): if i >= first_timestep_index_with_state: - energy[i] = state.get_timestep_energy() + energy[i] = int(state.get_timestep_energy()) fill_level[i] = state.get_fill_level() actuators[i] = state.get_actuator_configurations() - state_selection_reasons[i] = state.get_selection_reason().abbr + state_selection_reasons[i] = state.get_selection_reason().abbr # type: ignore state = state.get_previous_state() else: energy[i] = 0 @@ -204,8 +196,12 @@ def convert_to_plan(self, first_timestep_index_with_state: int, end_state: FrbcS energy[0] += self.device_state.get_energy_in_current_timestep().to(SI.joule).magnitude return S2FrbcPlan( False, - JouleProfile(self.profile_metadata, energy), - SoCProfile(self.profile_metadata, fill_level), + JouleProfile( + self.profile_metadata.get_profile_start(), self.profile_metadata.get_timestep_duration(), energy + ), + SoCProfile( + self.profile_metadata.get_profile_start(), self.profile_metadata.get_timestep_duration(), fill_level + ), actuators, ) diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_actuator_configuration.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py similarity index 81% rename from flexmeasures_s2/profile_steering/frbc/s2_frbc_actuator_configuration.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py index b70b0c9..b739d5a 100644 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_actuator_configuration.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py @@ -1,3 +1,6 @@ +from typing import Dict, Any + + class S2ActuatorConfiguration: def __init__(self, operation_mode_id, factor): self.operation_mode_id = operation_mode_id @@ -6,14 +9,14 @@ def __init__(self, operation_mode_id, factor): def get_operation_mode_id(self): return self.operation_mode_id - def get_factor(self): + def get_factor(self) -> float: return self.factor def to_dict(self): return {"operationModeId": self.operation_mode_id, "factor": self.factor} @staticmethod - def from_dict(data): + def from_dict(data: Dict[str, Any]) -> "S2ActuatorConfiguration": return S2ActuatorConfiguration(data["operationModeId"], data["factor"]) def __str__(self): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_controller.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_controller.py deleted file mode 100644 index 11f4b80..0000000 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_controller.py +++ /dev/null @@ -1,150 +0,0 @@ -from datetime import datetime -from typing import Optional, List -from common.joule_profile import JouleProfile -from common.target_profile import TargetProfile -from common.proposal import Proposal -from common.profile_metadata import ProfileMetadata -from frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper -from frbc.operation_mode_profile_tree import OperationModeProfileTree -from frbc.s2_frbc_plan import S2FrbcPlan -from frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile -from frbc.s2_frbc_device_state import S2FrbcDeviceState -from common.device_planner.device_plan import DevicePlan - -class S2FrbcDeviceController: - def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: ProfileMetadata, plan_due_by_date: datetime): - self.s2_frbc_state = s2_frbc_state - self.profile_metadata = profile_metadata - self.zero_profile = JouleProfile(profile_metadata, 0) - self.null_profile = JouleProfile(profile_metadata, None) - self.state_tree: Optional[OperationModeProfileTree] = None - if self.is_storage_available(s2_frbc_state): - self.state_tree = OperationModeProfileTree( - s2_frbc_state, profile_metadata, plan_due_by_date - ) - self.priority_class = s2_frbc_state.get_priority_class() - self.latest_plan: Optional[S2FrbcPlan] = None - self.accepted_plan: Optional[S2FrbcPlan] = None - - def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: - latest_before_first_ptu = OperationModeProfileTree.get_latest_before( - self.profile_metadata.get_profile_start(), - storage_state.get_system_descriptions(), - lambda sd: sd.get_valid_from(), - ) - if not storage_state.get_system_descriptions(): - return False - if latest_before_first_ptu is None: - active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= self.profile_metadata.get_profile_start() - and sd.get_storage().get_status() is not None - for sd in storage_state.get_system_descriptions() - ) - else: - active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= latest_before_first_ptu.get_valid_from() - and sd.get_storage().get_status() is not None - for sd in storage_state.get_system_descriptions() - ) - return ( - storage_state.is_online() - and active_and_upcoming_system_descriptions_has_active_storage - ) - - def get_device_id(self) -> str: - return self.s2_frbc_state.get_device_id() - - def get_connection_id(self) -> str: - return self.s2_frbc_state.get_connection_id() - - def get_device_name(self) -> str: - return self.s2_frbc_state.get_device_name() - - def create_improved_planning( - self, diff_to_global_target: TargetProfile, diff_to_max: JouleProfile, diff_to_min: JouleProfile, plan_due_by_date: datetime - ) -> Proposal: - target = diff_to_global_target.add(self.accepted_plan.get_energy()) - max_profile = diff_to_max.add(self.accepted_plan.get_energy()) - min_profile = diff_to_min.add(self.accepted_plan.get_energy()) - if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - target, min_profile, max_profile - ) - else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) - proposal = Proposal( - diff_to_global_target, - diff_to_max, - diff_to_min, - self.latest_plan.get_energy(), - self.accepted_plan.get_energy(), - self, - ) - return proposal - - def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: - if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - TargetProfile.null_profile(self.profile_metadata), - self.null_profile, - self.null_profile, - ) - else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) - self.accepted_plan = self.latest_plan - return self.latest_plan.get_energy() - - def accept_proposal(self, accepted_proposal: Proposal) -> None: - if accepted_proposal.get_origin() != self: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if not accepted_proposal.get_proposed_plan().equals( - self.latest_plan.get_energy() - ): - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if accepted_proposal.get_congestion_improvement_value() < 0: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" - ) - self.accepted_plan = self.latest_plan - - def get_current_profile(self) -> JouleProfile: - return self.accepted_plan.get_energy() - - def get_latest_plan(self) -> Optional[S2FrbcPlan]: - return self.latest_plan - - def get_device_plan(self) -> DevicePlan: - return DevicePlan( - self.get_device_id(), - self.get_device_name(), - self.get_connection_id(), - self.accepted_plan.get_energy(), - self.accepted_plan.get_fill_level(), - self.convert_plan_to_instructions( - self.profile_metadata, self.accepted_plan - ), - self.accepted_plan.get_s2_frbc_insights_profile(), - ) - - @staticmethod - def convert_plan_to_instructions(profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan) -> S2FrbcInstructionProfile: - elements = [] - actuator_configurations_per_timestep = device_plan.get_operation_mode_id() - if actuator_configurations_per_timestep is not None: - for actuator_configurations in actuator_configurations_per_timestep: - new_element = S2FrbcInstructionProfile.Element( - not actuator_configurations, actuator_configurations - ) - elements.append(new_element) - else: - elements = [None] * profile_metadata.get_nr_of_timesteps() - return S2FrbcInstructionProfile(profile_metadata, elements) - - def get_priority_class(self) -> int: - return self.priority_class diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index b8414dd..a7c6bca 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -1,7 +1,5 @@ -from datetime import datetime, timedelta -<<<<<<<< HEAD:flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py -from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner - +from datetime import datetime +from typing import Optional from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.proposal import Proposal from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile @@ -9,40 +7,51 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( S2FrbcInstructionProfile, ) - - -class S2FrbcDevicePlanner(DevicePlanner): - def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): -======== -from typing import Optional -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.proposal import Proposal -from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.frbc.s2_frbc_plan import S2FrbcPlan -from flexmeasures_s2.profile_steering.frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper -from flexmeasures_s2.profile_steering.common.device_planner.device_plan import DevicePlan +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, +) +from flexmeasures_s2.profile_steering.common.device_planner.device_plan import ( + DevicePlan, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.operation_mode_profile_tree import ( + OperationModeProfileTree, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner -class S2FrbcDevicePlanner: - def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: ProfileMetadata, plan_due_by_date: datetime): ->>>>>>>> 10c28e55b91489a977c07d21f7bbe725dfd07c8f:flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py +# make sure this is a DevicePlanner +class S2FrbcDevicePlanner(DevicePlanner): + def __init__( + self, + s2_frbc_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, + ): self.s2_frbc_state = s2_frbc_state self.profile_metadata = profile_metadata - self.zero_profile = JouleProfile(profile_metadata, 0) - self.null_profile = JouleProfile(profile_metadata, None) - self.state_tree: Optional[OperationModeProfileTree] = None - if self.is_storage_available(s2_frbc_state): - from flexmeasures_s2.profile_steering.frbc.operation_mode_profile_tree import OperationModeProfileTree + self.zero_profile = JouleProfile( + profile_metadata.get_profile_start(), + profile_metadata.get_timestep_duration(), + [0] * profile_metadata.get_nr_of_timesteps(), + ) + self.null_profile = JouleProfile( + profile_metadata.get_profile_start(), + profile_metadata.get_timestep_duration(), + None, + ) + if self.is_storage_available(self.s2_frbc_state): self.state_tree = OperationModeProfileTree( - s2_frbc_state, profile_metadata, plan_due_by_date + S2FrbcDeviceStateWrapper(self.s2_frbc_state), + profile_metadata, + plan_due_by_date, ) - self.priority_class = s2_frbc_state.get_priority_class() + self.priority_class = 1 self.latest_plan: Optional[S2FrbcPlan] = None self.accepted_plan: Optional[S2FrbcPlan] = None - def is_storage_available(self, storage_state: S2FrbcDeviceStateWrapper) -> bool: + def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: latest_before_first_ptu = OperationModeProfileTree.get_latest_before( self.profile_metadata.get_profile_start(), storage_state.get_system_descriptions(), @@ -64,10 +73,7 @@ def is_storage_available(self, storage_state: S2FrbcDeviceStateWrapper) -> bool: and sd.get_storage().get_status() is not None for sd in storage_state.get_system_descriptions() ) - return ( - storage_state.is_online() - and active_and_upcoming_system_descriptions_has_active_storage - ) + return storage_state._is_online() and active_and_upcoming_system_descriptions_has_active_storage def get_device_id(self) -> str: return self.s2_frbc_state.get_device_id() @@ -79,24 +85,38 @@ def get_device_name(self) -> str: return self.s2_frbc_state.get_device_name() def create_improved_planning( - self, diff_to_global_target: JouleProfile, diff_to_max: JouleProfile, diff_to_min: JouleProfile, plan_due_by_date: datetime + self, + diff_to_global_target: TargetProfile, + diff_to_max: JouleProfile, + diff_to_min: JouleProfile, + plan_due_by_date: datetime, ) -> Proposal: + if self.accepted_plan is None: + raise ValueError("No accepted plan found") + target = diff_to_global_target.add(self.accepted_plan.get_energy()) + max_profile = diff_to_max.add(self.accepted_plan.get_energy()) min_profile = diff_to_min.add(self.accepted_plan.get_energy()) + if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - target, min_profile, max_profile - ) + self.latest_plan = self.state_tree.find_best_plan(target, min_profile, max_profile) else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) + self.latest_plan = S2FrbcPlan( + idle=True, + energy=self.zero_profile, + fill_level=None, + operation_mode_id=[], + ) + if self.latest_plan is None: + raise ValueError("No latest plan found") proposal = Proposal( - diff_to_global_target, - diff_to_max, - diff_to_min, - self.latest_plan.get_energy(), - self.accepted_plan.get_energy(), - self, + global_diff_target=diff_to_global_target, + diff_to_congestion_max=diff_to_max, + diff_to_congestion_min=diff_to_min, + proposed_plan=self.latest_plan.get_energy(), + old_plan=self.accepted_plan.get_energy(), + origin=self, ) return proposal @@ -108,21 +128,22 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: self.null_profile, ) else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) + self.latest_plan = S2FrbcPlan( + idle=True, + energy=self.zero_profile, + fill_level=None, + operation_mode_id=[], + ) self.accepted_plan = self.latest_plan - return self.latest_plan.get_energy() + return self.latest_plan.get_energy() # type: ignore def accept_proposal(self, accepted_proposal: Proposal) -> None: + if self.latest_plan is None: + raise ValueError("No latest plan found") if accepted_proposal.get_origin() != self: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if not accepted_proposal.get_proposed_plan().equals( - self.latest_plan.get_energy() - ): - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) + raise ValueError(f"Storage controller '{self.get_device_id()}' received a proposal that he did not send.") + if not accepted_proposal.get_proposed_plan() == self.latest_plan.get_energy(): + raise ValueError(f"Storage controller '{self.get_device_id()}' received a proposal that he did not send.") if accepted_proposal.get_congestion_improvement_value() < 0: raise ValueError( f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" @@ -130,37 +151,42 @@ def accept_proposal(self, accepted_proposal: Proposal) -> None: self.accepted_plan = self.latest_plan def get_current_profile(self) -> JouleProfile: + if self.accepted_plan is None: + raise ValueError("No accepted plan found") return self.accepted_plan.get_energy() def get_latest_plan(self) -> Optional[S2FrbcPlan]: return self.latest_plan - def get_device_plan(self) -> DevicePlan: + def get_device_plan(self) -> Optional[DevicePlan]: + if self.accepted_plan is None: + return None return DevicePlan( - self.get_device_id(), - self.get_device_name(), - self.get_connection_id(), - self.accepted_plan.get_energy(), - self.accepted_plan.get_fill_level(), - self.convert_plan_to_instructions( - self.profile_metadata, self.accepted_plan - ), - self.accepted_plan.get_s2_frbc_insights_profile(), + device_id=self.get_device_id(), + device_name=self.get_device_name(), + connection_id=self.get_connection_id(), + energy_profile=self.accepted_plan.get_energy(), + fill_level_profile=self.accepted_plan.get_fill_level(), + instruction_profile=self.convert_plan_to_instructions(self.profile_metadata, self.accepted_plan), ) @staticmethod - def convert_plan_to_instructions(profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan) -> S2FrbcInstructionProfile: + def convert_plan_to_instructions( + profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan + ) -> S2FrbcInstructionProfile: elements = [] actuator_configurations_per_timestep = device_plan.get_operation_mode_id() if actuator_configurations_per_timestep is not None: for actuator_configurations in actuator_configurations_per_timestep: - new_element = S2FrbcInstructionProfile.Element( - not actuator_configurations, actuator_configurations - ) + new_element = S2FrbcInstructionProfile.Element(not actuator_configurations, actuator_configurations) elements.append(new_element) else: elements = [None] * profile_metadata.get_nr_of_timesteps() - return S2FrbcInstructionProfile(profile_metadata, elements) + return S2FrbcInstructionProfile( + profile_start=profile_metadata.get_profile_start(), + timestep_duration=profile_metadata.get_timestep_duration(), + elements=elements, + ) def get_priority_class(self) -> int: return self.priority_class diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py index 8dab04e..61fb805 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py @@ -1,7 +1,13 @@ from datetime import datetime from typing import List, Optional from s2python.common import CommodityQuantity, PowerForecast -from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour, FRBCUsageForecast, FRBCFillLevelTargetProfile +from s2python.frbc import ( + FRBCSystemDescription, + FRBCLeakageBehaviour, + FRBCUsageForecast, + FRBCFillLevelTargetProfile, +) + class S2FrbcDeviceState: class ComputationalParameters: @@ -29,6 +35,7 @@ def __init__( leakage_behaviours: List[FRBCLeakageBehaviour], usage_forecasts: List[FRBCUsageForecast], fill_level_target_profiles: List[FRBCFillLevelTargetProfile], + computational_parameters: ComputationalParameters, ): self.device_id = device_id self.device_name = device_name @@ -42,7 +49,8 @@ def __init__( self.leakage_behaviours = leakage_behaviours self.usage_forecasts = usage_forecasts self.fill_level_target_profiles = fill_level_target_profiles - + self.computational_parameters = computational_parameters + def get_system_descriptions(self) -> List[FRBCSystemDescription]: return self.system_descriptions @@ -54,3 +62,25 @@ def get_usage_forecasts(self) -> List[FRBCUsageForecast]: def get_fill_level_target_profiles(self) -> List[FRBCFillLevelTargetProfile]: return self.fill_level_target_profiles + + def get_device_id(self) -> str: + return self.device_id + + def get_device_name(self) -> str: + return self.device_name + + def get_connection_id(self) -> str: + return self.connection_id + + def _is_online(self) -> bool: + return self.is_online + + def get_computational_parameters(self) -> ComputationalParameters: + return self.computational_parameters + + def get_power_forecast(self) -> Optional[PowerForecast]: + return self.power_forecast + + def get_energy_in_current_timestep(self) -> CommodityQuantity: + return self.energy_in_current_timestep + diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index debbfac..4c4302d 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -1,14 +1,19 @@ from datetime import datetime, timedelta from typing import Dict, List, Optional, Any -from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) from s2python.common import CommodityQuantity -from flexmeasures_s2.profile_steering.frbc.frbc_operation_mode_wrapper import FrbcOperationModeWrapper -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state import S2FrbcDeviceState -from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( + FrbcOperationModeWrapper, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep from s2python.common.transition import Transition from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription + class S2FrbcDeviceStateWrapper: epsilon = 1e-4 @@ -22,7 +27,7 @@ def __init__(self, device_state: S2FrbcDeviceState): self.operation_modes: Dict[str, FrbcOperationModeWrapper] = {} def is_online(self) -> bool: - return self.device_state.is_online() + return self.device_state._is_online() def get_power_forecast(self) -> Any: return self.device_state.get_power_forecast() @@ -39,9 +44,6 @@ def get_usage_forecasts(self) -> Any: def get_fill_level_target_profiles(self) -> Any: return self.device_state.get_fill_level_target_profiles() - def get_energy_in_current_timestep(self) -> CommodityQuantity: - return self.device_state.get_energy_in_current_timestep() - def get_computational_parameters(self) -> Any: return self.device_state.get_computational_parameters() @@ -50,9 +52,7 @@ def get_actuators(self, target_timestep: FrbcTimestep) -> List[str]: target_timestep.get_start_date() ) if actuator_operation_mode_map is None: - actuator_operation_mode_map = self.create_actuator_operation_mode_map( - target_timestep - ) + actuator_operation_mode_map = self.create_actuator_operation_mode_map(target_timestep) return list(actuator_operation_mode_map.keys()) def get_normal_operation_modes_for_actuator(self, target_timestep: FrbcTimestep, actuator_id: str) -> List[str]: @@ -60,33 +60,28 @@ def get_normal_operation_modes_for_actuator(self, target_timestep: FrbcTimestep, target_timestep.get_start_date() ) if actuator_operation_mode_map is None: - actuator_operation_mode_map = self.create_actuator_operation_mode_map( - target_timestep - ) + actuator_operation_mode_map = self.create_actuator_operation_mode_map(target_timestep) return actuator_operation_mode_map.get(actuator_id, []) def create_actuator_operation_mode_map(self, target_timestep: FrbcTimestep) -> Dict[str, List[str]]: actuator_operation_mode_map = {} for a in target_timestep.get_system_description().get_actuators(): actuator_operation_mode_map[a.get_id()] = [ - om.get_id() - for om in a.get_operation_modes() - if not om.get_abnormal_condition_only() + om.get_id() for om in a.get_operation_modes() if not om.get_abnormal_condition_only() ] - self.actuator_operation_mode_map_per_timestep[ - target_timestep.get_start_date() - ] = actuator_operation_mode_map + self.actuator_operation_mode_map_per_timestep[target_timestep.get_start_date()] = actuator_operation_mode_map return actuator_operation_mode_map def get_operation_mode(self, target_timestep, actuator_id: str, operation_mode_id: str): - from flexmeasures_s2.profile_steering.frbc.frbc_operation_mode_wrapper import FrbcOperationModeWrapper + from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( + FrbcOperationModeWrapper, + ) + om_key = f"{actuator_id}-{operation_mode_id}" if om_key in self.operation_modes: return self.operation_modes[om_key] actuators = target_timestep.get_system_description().get_actuators() - found_actuator_description = next( - (ad for ad in actuators if ad.get_id() == actuator_id), None - ) + found_actuator_description = next((ad for ad in actuators if ad.get_id() == actuator_id), None) if found_actuator_description: for operation_mode in found_actuator_description.get_operation_modes(): if operation_mode.get_id() == operation_mode_id: @@ -95,63 +90,57 @@ def get_operation_mode(self, target_timestep, actuator_id: str, operation_mode_i return found_operation_mode return None - def operation_mode_uses_factor(self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str) -> bool: + def operation_mode_uses_factor( + self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str + ) -> bool: key = f"{actuator_id}-{operation_mode_id}" if key not in self.operation_mode_uses_factor_map: - result = self.get_operation_mode( - target_timestep, actuator_id, operation_mode_id - ).is_uses_factor() + result = self.get_operation_mode(target_timestep, actuator_id, operation_mode_id).is_uses_factor() self.operation_mode_uses_factor_map[key] = result return self.operation_mode_uses_factor_map[key] - def get_all_possible_actuator_configurations(self, target_timestep: FrbcTimestep) -> List[Dict[str, S2ActuatorConfiguration]]: + def get_all_possible_actuator_configurations( + self, target_timestep: FrbcTimestep + ) -> List[Dict[str, S2ActuatorConfiguration]]: timestep_date = target_timestep.get_start_date() if timestep_date not in self.all_actions: possible_actuator_configs = {} for actuator_id in self.get_actuators(target_timestep): actuator_list = [] - for operation_mode_id in self.get_normal_operation_modes_for_actuator( - target_timestep, actuator_id - ): - if self.operation_mode_uses_factor( - target_timestep, actuator_id, operation_mode_id - ): + for operation_mode_id in self.get_normal_operation_modes_for_actuator(target_timestep, actuator_id): + if self.operation_mode_uses_factor(target_timestep, actuator_id, operation_mode_id): for i in range(self.nr_of_stratification_layers + 1): - factor_for_actuator = i * ( - 1.0 / self.nr_of_stratification_layers - ) - actuator_list.append( - S2ActuatorConfiguration( - operation_mode_id, factor_for_actuator - ) - ) + factor_for_actuator = i * (1.0 / self.nr_of_stratification_layers) + actuator_list.append(S2ActuatorConfiguration(operation_mode_id, factor_for_actuator)) else: - actuator_list.append( - S2ActuatorConfiguration(operation_mode_id, 0.0) - ) + actuator_list.append(S2ActuatorConfiguration(operation_mode_id, 0.0)) possible_actuator_configs[actuator_id] = actuator_list keys = list(possible_actuator_configs.keys()) actions_for_timestep = [] combination = [0] * len(keys) - actions_for_timestep.append( - self.combination_to_map(combination, keys, possible_actuator_configs) - ) + actions_for_timestep.append(self.combination_to_map(combination, keys, possible_actuator_configs)) while self.increase(combination, keys, possible_actuator_configs): - actions_for_timestep.append( - self.combination_to_map( - combination, keys, possible_actuator_configs - ) - ) + actions_for_timestep.append(self.combination_to_map(combination, keys, possible_actuator_configs)) self.all_actions[timestep_date] = actions_for_timestep return self.all_actions[timestep_date] - def combination_to_map(self, cur: List[int], keys: List[str], possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]]) -> Dict[str, S2ActuatorConfiguration]: + def combination_to_map( + self, + cur: List[int], + keys: List[str], + possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]], + ) -> Dict[str, S2ActuatorConfiguration]: combination = {} for i, key in enumerate(keys): combination[key] = possible_actuator_configs[key][cur[i]] return combination - def increase(self, cur: List[int], keys: List[str], possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]]) -> bool: + def increase( + self, + cur: List[int], + keys: List[str], + possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]], + ) -> bool: cur[0] += 1 for i, key in enumerate(keys): if cur[i] >= len(possible_actuator_configs[key]): @@ -163,22 +152,22 @@ def increase(self, cur: List[int], keys: List[str], possible_actuator_configs: D @staticmethod def get_transition( - target_timestep, actuator_id: str, from_operation_mode_id: str, to_operation_mode_id: str + target_timestep, + actuator_id: str, + from_operation_mode_id: str, + to_operation_mode_id: str, ) -> Optional[Transition]: - from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep - actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( - target_timestep, actuator_id - ) + + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description(target_timestep, actuator_id) + if actuator_description is None: + raise ValueError(f"Actuator description not found for actuator {actuator_id}") for transition in actuator_description.get_transitions(): - if ( - transition.get_from() == from_operation_mode_id - and transition.get_to() == to_operation_mode_id - ): + if transition.get_from() == from_operation_mode_id and transition.get_to() == to_operation_mode_id: return transition return None def get_operation_mode_power(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: - from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep + element = self.find_operation_mode_element(om, fill_level) power_watt = 0 for power_range in element.get_power_ranges(): @@ -208,11 +197,7 @@ def find_operation_mode_element(om, fill_level): if element is None: first = om.get_elements()[0] last = om.get_elements()[-1] - element = ( - first - if fill_level < first.get_fill_level_range().get_start_of_range() - else last - ) + element = first if fill_level < first.get_fill_level_range().get_start_of_range() else last return element def get_operation_mode_fill_rate(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: @@ -227,9 +212,7 @@ def get_leakage_rate(target_timestep: FrbcTimestep, fill_level: float) -> float: if target_timestep.get_leakage_behaviour() is None: return 0 else: - return S2FrbcDeviceStateWrapper.find_leakage_element( - target_timestep, fill_level - ).get_leakage_rate() + return S2FrbcDeviceStateWrapper.find_leakage_element(target_timestep, fill_level).get_leakage_rate() @staticmethod def find_leakage_element(target_timestep: FrbcTimestep, fill_level: float) -> FRBCLeakageBehaviourElement: @@ -247,26 +230,16 @@ def find_leakage_element(target_timestep: FrbcTimestep, fill_level: float) -> FR if element is None: first = leakage.get_elements()[0] last = leakage.get_elements()[-1] - element = ( - first - if fill_level < first.get_fill_level_range().get_start_of_range() - else last - ) + element = first if fill_level < first.get_fill_level_range().get_start_of_range() else last return element @staticmethod def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: fill_level_lower_limit = ( - target_timestep.get_system_description() - .get_storage() - .get_fill_level_range() - .get_start_of_range() + target_timestep.get_system_description().get_storage().get_fill_level_range().get_start_of_range() ) fill_level_upper_limit = ( - target_timestep.get_system_description() - .get_storage() - .get_fill_level_range() - .get_end_of_range() + target_timestep.get_system_description().get_storage().get_fill_level_range().get_end_of_range() ) return int( (fill_level - fill_level_lower_limit) @@ -276,9 +249,9 @@ def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: @staticmethod def get_timer_duration_milliseconds(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> int: - actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( - target_timestep, actuator_id - ) + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description(target_timestep, actuator_id) + if actuator_description is None: + raise ValueError(f"Actuator description not found for actuator {actuator_id}") timer = next( (t for t in actuator_description.get_timers() if t.get_id() == timer_id), None, @@ -296,10 +269,9 @@ def get_timer_duration(target_timestep: FrbcTimestep, actuator_id: str, timer_id @staticmethod def get_actuator_description(target_timestep: FrbcTimestep, actuator_id: str) -> Optional[FRBCActuatorDescription]: return next( - ( - ad - for ad in target_timestep.get_system_description().get_actuators() - if ad.get_id() == actuator_id - ), + (ad for ad in target_timestep.get_system_description().get_actuators() if ad.get_id() == actuator_id), None, ) + + def get_energy_in_current_timestep(self) -> CommodityQuantity: + return self.device_state.get_energy_in_current_timestep() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_insight_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_insight_profile.py deleted file mode 100644 index 7d69deb..0000000 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_insight_profile.py +++ /dev/null @@ -1,30 +0,0 @@ -from typing import List, Dict - - -class S2FrbcInsightsProfile: - def __init__( - self, profile_metadata, elements: List["S2FrbcInsightsProfile.Element"] - ): - self.profile_metadata = profile_metadata - self.elements = elements - - def default_value(self): - return None - - def build_profile_type(self, profile_metadata, elements): - return S2FrbcInsightsProfile(profile_metadata, elements) - - def to_insights_map(self) -> Dict[str, List[float]]: - insights_map = { - "fill_level_end_of_step": [ - e.get_fill_level_end_of_step() if e else None for e in self.elements - ] - } - return insights_map - - class Element: - def __init__(self, fill_level_end_of_step: float): - self.fill_level_end_of_step = fill_level_end_of_step - - def get_fill_level_end_of_step(self) -> float: - return self.fill_level_end_of_step diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py index 9972d21..44b4426 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py @@ -1,6 +1,8 @@ from typing import Dict, List from datetime import datetime, timedelta -from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) class S2FrbcInstructionProfile: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py index 2d33b62..8ce7a04 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py @@ -1,4 +1,7 @@ from typing import List, Dict +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) class S2FrbcPlan: @@ -7,14 +10,12 @@ def __init__( idle: bool, energy, fill_level, - operation_mode_id: List[Dict[str, "S2ActuatorConfiguration"]], - s2_frbc_insights_profile, + operation_mode_id: List[Dict[str, S2ActuatorConfiguration]], ): self.idle = idle self.energy = energy self.fill_level = fill_level self.operation_mode_id = operation_mode_id - self.s2_frbc_insights_profile = s2_frbc_insights_profile def is_idle(self) -> bool: return self.idle @@ -25,8 +26,5 @@ def get_energy(self): def get_fill_level(self): return self.fill_level - def get_operation_mode_id(self) -> List[Dict[str, "S2ActuatorConfiguration"]]: + def get_operation_mode_id(self) -> List[Dict[str, S2ActuatorConfiguration]]: return self.operation_mode_id - - def get_s2_frbc_insights_profile(self): - return self.s2_frbc_insights_profile diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py b/flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py new file mode 100644 index 0000000..757b859 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py @@ -0,0 +1,20 @@ +from enum import Enum + + +class SelectionReason(Enum): + CONGESTION_CONSTRAINT = "C" + ENERGY_TARGET = "E" + TARIFF_TARGET = "T" + MIN_ENERGY = "M" + NO_ALTERNATIVE = "_" + EMERGENCY_STATE = "!" + + +class SelectionResult: + def __init__( + self, + result: bool, + reason: SelectionReason, + ): + self.result = result + self.reason = reason diff --git a/flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py similarity index 91% rename from flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py rename to flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py index 7fb705b..c85886f 100644 --- a/flexmeasures_s2/profile_steering/frbc/usage_forecast_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -1,8 +1,7 @@ # TODO: Is this the same as FRBCUsageForecast? -from datetime import datetime, timedelta -from s2python.frbc import FRBCUsageForecast, FRBCUsageForecastElement +from datetime import timedelta class UsageForecastElement: diff --git a/flexmeasures_s2/profile_steering/frbc/__init__.py b/flexmeasures_s2/profile_steering/frbc/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py deleted file mode 100644 index 11f4b80..0000000 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_controller.py +++ /dev/null @@ -1,150 +0,0 @@ -from datetime import datetime -from typing import Optional, List -from common.joule_profile import JouleProfile -from common.target_profile import TargetProfile -from common.proposal import Proposal -from common.profile_metadata import ProfileMetadata -from frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper -from frbc.operation_mode_profile_tree import OperationModeProfileTree -from frbc.s2_frbc_plan import S2FrbcPlan -from frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile -from frbc.s2_frbc_device_state import S2FrbcDeviceState -from common.device_planner.device_plan import DevicePlan - -class S2FrbcDeviceController: - def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: ProfileMetadata, plan_due_by_date: datetime): - self.s2_frbc_state = s2_frbc_state - self.profile_metadata = profile_metadata - self.zero_profile = JouleProfile(profile_metadata, 0) - self.null_profile = JouleProfile(profile_metadata, None) - self.state_tree: Optional[OperationModeProfileTree] = None - if self.is_storage_available(s2_frbc_state): - self.state_tree = OperationModeProfileTree( - s2_frbc_state, profile_metadata, plan_due_by_date - ) - self.priority_class = s2_frbc_state.get_priority_class() - self.latest_plan: Optional[S2FrbcPlan] = None - self.accepted_plan: Optional[S2FrbcPlan] = None - - def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: - latest_before_first_ptu = OperationModeProfileTree.get_latest_before( - self.profile_metadata.get_profile_start(), - storage_state.get_system_descriptions(), - lambda sd: sd.get_valid_from(), - ) - if not storage_state.get_system_descriptions(): - return False - if latest_before_first_ptu is None: - active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= self.profile_metadata.get_profile_start() - and sd.get_storage().get_status() is not None - for sd in storage_state.get_system_descriptions() - ) - else: - active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= latest_before_first_ptu.get_valid_from() - and sd.get_storage().get_status() is not None - for sd in storage_state.get_system_descriptions() - ) - return ( - storage_state.is_online() - and active_and_upcoming_system_descriptions_has_active_storage - ) - - def get_device_id(self) -> str: - return self.s2_frbc_state.get_device_id() - - def get_connection_id(self) -> str: - return self.s2_frbc_state.get_connection_id() - - def get_device_name(self) -> str: - return self.s2_frbc_state.get_device_name() - - def create_improved_planning( - self, diff_to_global_target: TargetProfile, diff_to_max: JouleProfile, diff_to_min: JouleProfile, plan_due_by_date: datetime - ) -> Proposal: - target = diff_to_global_target.add(self.accepted_plan.get_energy()) - max_profile = diff_to_max.add(self.accepted_plan.get_energy()) - min_profile = diff_to_min.add(self.accepted_plan.get_energy()) - if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - target, min_profile, max_profile - ) - else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) - proposal = Proposal( - diff_to_global_target, - diff_to_max, - diff_to_min, - self.latest_plan.get_energy(), - self.accepted_plan.get_energy(), - self, - ) - return proposal - - def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: - if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - TargetProfile.null_profile(self.profile_metadata), - self.null_profile, - self.null_profile, - ) - else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) - self.accepted_plan = self.latest_plan - return self.latest_plan.get_energy() - - def accept_proposal(self, accepted_proposal: Proposal) -> None: - if accepted_proposal.get_origin() != self: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if not accepted_proposal.get_proposed_plan().equals( - self.latest_plan.get_energy() - ): - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if accepted_proposal.get_congestion_improvement_value() < 0: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" - ) - self.accepted_plan = self.latest_plan - - def get_current_profile(self) -> JouleProfile: - return self.accepted_plan.get_energy() - - def get_latest_plan(self) -> Optional[S2FrbcPlan]: - return self.latest_plan - - def get_device_plan(self) -> DevicePlan: - return DevicePlan( - self.get_device_id(), - self.get_device_name(), - self.get_connection_id(), - self.accepted_plan.get_energy(), - self.accepted_plan.get_fill_level(), - self.convert_plan_to_instructions( - self.profile_metadata, self.accepted_plan - ), - self.accepted_plan.get_s2_frbc_insights_profile(), - ) - - @staticmethod - def convert_plan_to_instructions(profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan) -> S2FrbcInstructionProfile: - elements = [] - actuator_configurations_per_timestep = device_plan.get_operation_mode_id() - if actuator_configurations_per_timestep is not None: - for actuator_configurations in actuator_configurations_per_timestep: - new_element = S2FrbcInstructionProfile.Element( - not actuator_configurations, actuator_configurations - ) - elements.append(new_element) - else: - elements = [None] * profile_metadata.get_nr_of_timesteps() - return S2FrbcInstructionProfile(profile_metadata, elements) - - def get_priority_class(self) -> int: - return self.priority_class diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py deleted file mode 100644 index b8414dd..0000000 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py +++ /dev/null @@ -1,166 +0,0 @@ -from datetime import datetime, timedelta -<<<<<<<< HEAD:flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py -from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner - -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.proposal import Proposal -from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( - S2FrbcInstructionProfile, -) - - -class S2FrbcDevicePlanner(DevicePlanner): - def __init__(self, s2_frbc_state, profile_metadata, plan_due_by_date): -======== -from typing import Optional -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.proposal import Proposal -from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.frbc.s2_frbc_plan import S2FrbcPlan -from flexmeasures_s2.profile_steering.frbc.s2_frbc_instruction_profile import S2FrbcInstructionProfile -from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper -from flexmeasures_s2.profile_steering.common.device_planner.device_plan import DevicePlan - - -class S2FrbcDevicePlanner: - def __init__(self, s2_frbc_state: S2FrbcDeviceStateWrapper, profile_metadata: ProfileMetadata, plan_due_by_date: datetime): ->>>>>>>> 10c28e55b91489a977c07d21f7bbe725dfd07c8f:flexmeasures_s2/profile_steering/frbc/s2_frbc_device_planner.py - self.s2_frbc_state = s2_frbc_state - self.profile_metadata = profile_metadata - self.zero_profile = JouleProfile(profile_metadata, 0) - self.null_profile = JouleProfile(profile_metadata, None) - self.state_tree: Optional[OperationModeProfileTree] = None - if self.is_storage_available(s2_frbc_state): - from flexmeasures_s2.profile_steering.frbc.operation_mode_profile_tree import OperationModeProfileTree - self.state_tree = OperationModeProfileTree( - s2_frbc_state, profile_metadata, plan_due_by_date - ) - self.priority_class = s2_frbc_state.get_priority_class() - self.latest_plan: Optional[S2FrbcPlan] = None - self.accepted_plan: Optional[S2FrbcPlan] = None - - def is_storage_available(self, storage_state: S2FrbcDeviceStateWrapper) -> bool: - latest_before_first_ptu = OperationModeProfileTree.get_latest_before( - self.profile_metadata.get_profile_start(), - storage_state.get_system_descriptions(), - lambda sd: sd.get_valid_from(), - ) - if not storage_state.get_system_descriptions(): - return False - if latest_before_first_ptu is None: - active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= self.profile_metadata.get_profile_start() - and sd.get_storage().get_status() is not None - for sd in storage_state.get_system_descriptions() - ) - else: - active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= latest_before_first_ptu.get_valid_from() - and sd.get_storage().get_status() is not None - for sd in storage_state.get_system_descriptions() - ) - return ( - storage_state.is_online() - and active_and_upcoming_system_descriptions_has_active_storage - ) - - def get_device_id(self) -> str: - return self.s2_frbc_state.get_device_id() - - def get_connection_id(self) -> str: - return self.s2_frbc_state.get_connection_id() - - def get_device_name(self) -> str: - return self.s2_frbc_state.get_device_name() - - def create_improved_planning( - self, diff_to_global_target: JouleProfile, diff_to_max: JouleProfile, diff_to_min: JouleProfile, plan_due_by_date: datetime - ) -> Proposal: - target = diff_to_global_target.add(self.accepted_plan.get_energy()) - max_profile = diff_to_max.add(self.accepted_plan.get_energy()) - min_profile = diff_to_min.add(self.accepted_plan.get_energy()) - if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - target, min_profile, max_profile - ) - else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) - proposal = Proposal( - diff_to_global_target, - diff_to_max, - diff_to_min, - self.latest_plan.get_energy(), - self.accepted_plan.get_energy(), - self, - ) - return proposal - - def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: - if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - TargetProfile.null_profile(self.profile_metadata), - self.null_profile, - self.null_profile, - ) - else: - self.latest_plan = S2FrbcPlan(True, self.zero_profile, None, None, None) - self.accepted_plan = self.latest_plan - return self.latest_plan.get_energy() - - def accept_proposal(self, accepted_proposal: Proposal) -> None: - if accepted_proposal.get_origin() != self: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if not accepted_proposal.get_proposed_plan().equals( - self.latest_plan.get_energy() - ): - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." - ) - if accepted_proposal.get_congestion_improvement_value() < 0: - raise ValueError( - f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" - ) - self.accepted_plan = self.latest_plan - - def get_current_profile(self) -> JouleProfile: - return self.accepted_plan.get_energy() - - def get_latest_plan(self) -> Optional[S2FrbcPlan]: - return self.latest_plan - - def get_device_plan(self) -> DevicePlan: - return DevicePlan( - self.get_device_id(), - self.get_device_name(), - self.get_connection_id(), - self.accepted_plan.get_energy(), - self.accepted_plan.get_fill_level(), - self.convert_plan_to_instructions( - self.profile_metadata, self.accepted_plan - ), - self.accepted_plan.get_s2_frbc_insights_profile(), - ) - - @staticmethod - def convert_plan_to_instructions(profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan) -> S2FrbcInstructionProfile: - elements = [] - actuator_configurations_per_timestep = device_plan.get_operation_mode_id() - if actuator_configurations_per_timestep is not None: - for actuator_configurations in actuator_configurations_per_timestep: - new_element = S2FrbcInstructionProfile.Element( - not actuator_configurations, actuator_configurations - ) - elements.append(new_element) - else: - elements = [None] * profile_metadata.get_nr_of_timesteps() - return S2FrbcInstructionProfile(profile_metadata, elements) - - def get_priority_class(self) -> int: - return self.priority_class diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py deleted file mode 100644 index 8dab04e..0000000 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state.py +++ /dev/null @@ -1,56 +0,0 @@ -from datetime import datetime -from typing import List, Optional -from s2python.common import CommodityQuantity, PowerForecast -from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour, FRBCUsageForecast, FRBCFillLevelTargetProfile - -class S2FrbcDeviceState: - class ComputationalParameters: - def __init__(self, nr_of_buckets: int, stratification_layers: int): - self.nr_of_buckets = nr_of_buckets - self.stratification_layers = stratification_layers - - def get_nr_of_buckets(self) -> int: - return self.nr_of_buckets - - def get_stratification_layers(self) -> int: - return self.stratification_layers - - def __init__( - self, - device_id: str, - device_name: str, - connection_id: str, - priority_class: int, - timestamp: datetime, - energy_in_current_timestep: CommodityQuantity, - is_online: bool, - power_forecast: Optional[PowerForecast], - system_descriptions: List[FRBCSystemDescription], - leakage_behaviours: List[FRBCLeakageBehaviour], - usage_forecasts: List[FRBCUsageForecast], - fill_level_target_profiles: List[FRBCFillLevelTargetProfile], - ): - self.device_id = device_id - self.device_name = device_name - self.connection_id = connection_id - self.priority_class = priority_class - self.timestamp = timestamp - self.energy_in_current_timestep = energy_in_current_timestep - self.is_online = is_online - self.power_forecast = power_forecast - self.system_descriptions = system_descriptions - self.leakage_behaviours = leakage_behaviours - self.usage_forecasts = usage_forecasts - self.fill_level_target_profiles = fill_level_target_profiles - - def get_system_descriptions(self) -> List[FRBCSystemDescription]: - return self.system_descriptions - - def get_leakage_behaviours(self) -> List[FRBCLeakageBehaviour]: - return self.leakage_behaviours - - def get_usage_forecasts(self) -> List[FRBCUsageForecast]: - return self.usage_forecasts - - def get_fill_level_target_profiles(self) -> List[FRBCFillLevelTargetProfile]: - return self.fill_level_target_profiles diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py deleted file mode 100644 index debbfac..0000000 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_device_state_wrapper.py +++ /dev/null @@ -1,305 +0,0 @@ -from datetime import datetime, timedelta -from typing import Dict, List, Optional, Any -from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration -from s2python.common import CommodityQuantity -from flexmeasures_s2.profile_steering.frbc.frbc_operation_mode_wrapper import FrbcOperationModeWrapper -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state import S2FrbcDeviceState -from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep - -from s2python.common.transition import Transition -from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription - -class S2FrbcDeviceStateWrapper: - epsilon = 1e-4 - - def __init__(self, device_state: S2FrbcDeviceState): - self.device_state = device_state - self.nr_of_buckets: int = device_state.get_computational_parameters().get_nr_of_buckets() - self.nr_of_stratification_layers: int = 0 # Initialize appropriately - self.actuator_operation_mode_map_per_timestep: Dict[datetime, Dict[str, List[str]]] = {} - self.all_actions: Dict[datetime, List[Dict[str, S2ActuatorConfiguration]]] = {} - self.operation_mode_uses_factor_map: Dict[str, bool] = {} - self.operation_modes: Dict[str, FrbcOperationModeWrapper] = {} - - def is_online(self) -> bool: - return self.device_state.is_online() - - def get_power_forecast(self) -> Any: - return self.device_state.get_power_forecast() - - def get_system_descriptions(self) -> Any: - return self.device_state.get_system_descriptions() - - def get_leakage_behaviours(self) -> Any: - return self.device_state.get_leakage_behaviours() - - def get_usage_forecasts(self) -> Any: - return self.device_state.get_usage_forecasts() - - def get_fill_level_target_profiles(self) -> Any: - return self.device_state.get_fill_level_target_profiles() - - def get_energy_in_current_timestep(self) -> CommodityQuantity: - return self.device_state.get_energy_in_current_timestep() - - def get_computational_parameters(self) -> Any: - return self.device_state.get_computational_parameters() - - def get_actuators(self, target_timestep: FrbcTimestep) -> List[str]: - actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( - target_timestep.get_start_date() - ) - if actuator_operation_mode_map is None: - actuator_operation_mode_map = self.create_actuator_operation_mode_map( - target_timestep - ) - return list(actuator_operation_mode_map.keys()) - - def get_normal_operation_modes_for_actuator(self, target_timestep: FrbcTimestep, actuator_id: str) -> List[str]: - actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( - target_timestep.get_start_date() - ) - if actuator_operation_mode_map is None: - actuator_operation_mode_map = self.create_actuator_operation_mode_map( - target_timestep - ) - return actuator_operation_mode_map.get(actuator_id, []) - - def create_actuator_operation_mode_map(self, target_timestep: FrbcTimestep) -> Dict[str, List[str]]: - actuator_operation_mode_map = {} - for a in target_timestep.get_system_description().get_actuators(): - actuator_operation_mode_map[a.get_id()] = [ - om.get_id() - for om in a.get_operation_modes() - if not om.get_abnormal_condition_only() - ] - self.actuator_operation_mode_map_per_timestep[ - target_timestep.get_start_date() - ] = actuator_operation_mode_map - return actuator_operation_mode_map - - def get_operation_mode(self, target_timestep, actuator_id: str, operation_mode_id: str): - from flexmeasures_s2.profile_steering.frbc.frbc_operation_mode_wrapper import FrbcOperationModeWrapper - om_key = f"{actuator_id}-{operation_mode_id}" - if om_key in self.operation_modes: - return self.operation_modes[om_key] - actuators = target_timestep.get_system_description().get_actuators() - found_actuator_description = next( - (ad for ad in actuators if ad.get_id() == actuator_id), None - ) - if found_actuator_description: - for operation_mode in found_actuator_description.get_operation_modes(): - if operation_mode.get_id() == operation_mode_id: - found_operation_mode = FrbcOperationModeWrapper(operation_mode) - self.operation_modes[om_key] = found_operation_mode - return found_operation_mode - return None - - def operation_mode_uses_factor(self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str) -> bool: - key = f"{actuator_id}-{operation_mode_id}" - if key not in self.operation_mode_uses_factor_map: - result = self.get_operation_mode( - target_timestep, actuator_id, operation_mode_id - ).is_uses_factor() - self.operation_mode_uses_factor_map[key] = result - return self.operation_mode_uses_factor_map[key] - - def get_all_possible_actuator_configurations(self, target_timestep: FrbcTimestep) -> List[Dict[str, S2ActuatorConfiguration]]: - timestep_date = target_timestep.get_start_date() - if timestep_date not in self.all_actions: - possible_actuator_configs = {} - for actuator_id in self.get_actuators(target_timestep): - actuator_list = [] - for operation_mode_id in self.get_normal_operation_modes_for_actuator( - target_timestep, actuator_id - ): - if self.operation_mode_uses_factor( - target_timestep, actuator_id, operation_mode_id - ): - for i in range(self.nr_of_stratification_layers + 1): - factor_for_actuator = i * ( - 1.0 / self.nr_of_stratification_layers - ) - actuator_list.append( - S2ActuatorConfiguration( - operation_mode_id, factor_for_actuator - ) - ) - else: - actuator_list.append( - S2ActuatorConfiguration(operation_mode_id, 0.0) - ) - possible_actuator_configs[actuator_id] = actuator_list - keys = list(possible_actuator_configs.keys()) - actions_for_timestep = [] - combination = [0] * len(keys) - actions_for_timestep.append( - self.combination_to_map(combination, keys, possible_actuator_configs) - ) - while self.increase(combination, keys, possible_actuator_configs): - actions_for_timestep.append( - self.combination_to_map( - combination, keys, possible_actuator_configs - ) - ) - self.all_actions[timestep_date] = actions_for_timestep - return self.all_actions[timestep_date] - - def combination_to_map(self, cur: List[int], keys: List[str], possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]]) -> Dict[str, S2ActuatorConfiguration]: - combination = {} - for i, key in enumerate(keys): - combination[key] = possible_actuator_configs[key][cur[i]] - return combination - - def increase(self, cur: List[int], keys: List[str], possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]]) -> bool: - cur[0] += 1 - for i, key in enumerate(keys): - if cur[i] >= len(possible_actuator_configs[key]): - if i + 1 >= len(keys): - return False - cur[i] = 0 - cur[i + 1] += 1 - return True - - @staticmethod - def get_transition( - target_timestep, actuator_id: str, from_operation_mode_id: str, to_operation_mode_id: str - ) -> Optional[Transition]: - from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep - actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( - target_timestep, actuator_id - ) - for transition in actuator_description.get_transitions(): - if ( - transition.get_from() == from_operation_mode_id - and transition.get_to() == to_operation_mode_id - ): - return transition - return None - - def get_operation_mode_power(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: - from flexmeasures_s2.profile_steering.frbc.frbc_timestep import FrbcTimestep - element = self.find_operation_mode_element(om, fill_level) - power_watt = 0 - for power_range in element.get_power_ranges(): - if power_range.get_commodity_quantity() in [ - CommodityQuantity.ELECTRIC_POWER_L1, - CommodityQuantity.ELECTRIC_POWER_L2, - CommodityQuantity.ELECTRIC_POWER_L3, - CommodityQuantity.ELECTRIC_POWER_3_PHASE_SYMMETRIC, - ]: - start = power_range.get_start_of_range() - end = power_range.get_end_of_range() - power_watt += (end - start) * factor + start - return power_watt - - @staticmethod - def find_operation_mode_element(om, fill_level): - element = next( - ( - e - for e in om.get_elements() - if e.get_fill_level_range().get_start_of_range() - <= fill_level - <= e.get_fill_level_range().get_end_of_range() - ), - None, - ) - if element is None: - first = om.get_elements()[0] - last = om.get_elements()[-1] - element = ( - first - if fill_level < first.get_fill_level_range().get_start_of_range() - else last - ) - return element - - def get_operation_mode_fill_rate(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: - element = self.find_operation_mode_element(om, fill_level) - fill_rate = element.get_fill_rate() - start = fill_rate.get_end_of_range() - end = fill_rate.get_start_of_range() - return (start - end) * factor + end - - @staticmethod - def get_leakage_rate(target_timestep: FrbcTimestep, fill_level: float) -> float: - if target_timestep.get_leakage_behaviour() is None: - return 0 - else: - return S2FrbcDeviceStateWrapper.find_leakage_element( - target_timestep, fill_level - ).get_leakage_rate() - - @staticmethod - def find_leakage_element(target_timestep: FrbcTimestep, fill_level: float) -> FRBCLeakageBehaviourElement: - leakage = target_timestep.get_leakage_behaviour() - element = next( - ( - e - for e in leakage.get_elements() - if e.get_fill_level_range().get_start_of_range() - <= fill_level - <= e.get_fill_level_range().get_end_of_range() - ), - None, - ) - if element is None: - first = leakage.get_elements()[0] - last = leakage.get_elements()[-1] - element = ( - first - if fill_level < first.get_fill_level_range().get_start_of_range() - else last - ) - return element - - @staticmethod - def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: - fill_level_lower_limit = ( - target_timestep.get_system_description() - .get_storage() - .get_fill_level_range() - .get_start_of_range() - ) - fill_level_upper_limit = ( - target_timestep.get_system_description() - .get_storage() - .get_fill_level_range() - .get_end_of_range() - ) - return int( - (fill_level - fill_level_lower_limit) - / (fill_level_upper_limit - fill_level_lower_limit) - * target_timestep.get_nr_of_buckets() - ) - - @staticmethod - def get_timer_duration_milliseconds(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> int: - actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( - target_timestep, actuator_id - ) - timer = next( - (t for t in actuator_description.get_timers() if t.get_id() == timer_id), - None, - ) - return timer.get_duration() if timer else 0 - - @staticmethod - def get_timer_duration(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> timedelta: - return timedelta( - milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( - target_timestep, actuator_id, timer_id - ) - ) - - @staticmethod - def get_actuator_description(target_timestep: FrbcTimestep, actuator_id: str) -> Optional[FRBCActuatorDescription]: - return next( - ( - ad - for ad in target_timestep.get_system_description().get_actuators() - if ad.get_id() == actuator_id - ), - None, - ) diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py deleted file mode 100644 index 9972d21..0000000 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_instruction_profile.py +++ /dev/null @@ -1,34 +0,0 @@ -from typing import Dict, List -from datetime import datetime, timedelta -from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration - - -class S2FrbcInstructionProfile: - class Element: - def __init__( - self, idle: bool, actuator_configuration: Dict[str, S2ActuatorConfiguration] - ): - self.idle = idle - self.actuator_configuration = actuator_configuration - - def is_idle(self) -> bool: - return self.idle - - def get_actuator_configuration(self) -> Dict[str, S2ActuatorConfiguration]: - return self.actuator_configuration - - def __init__( - self, - profile_start: datetime, - timestep_duration: timedelta, - elements: List[Element], - ): - self.profile_start = profile_start - self.timestep_duration = timestep_duration - self.elements = elements - - def default_value(self) -> "S2FrbcInstructionProfile.Element": - return S2FrbcInstructionProfile.Element(True, {}) - - def __str__(self) -> str: - return f"S2FrbcInstructionProfile(elements={self.elements})" diff --git a/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py deleted file mode 100644 index 97978bf..0000000 --- a/flexmeasures_s2/profile_steering/frbc/s2_frbc_plan.py +++ /dev/null @@ -1,31 +0,0 @@ -from typing import List, Dict -from flexmeasures_s2.profile_steering.frbc.s2_frbc_actuator_configuration import S2ActuatorConfiguration -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile - -class S2FrbcPlan: - def __init__( - self, - idle: bool, - energy, - fill_level, - operation_mode_id: List[Dict[str, S2ActuatorConfiguration]], - s2_frbc_insights_profile, - ): - self.idle = idle - self.energy = energy - self.fill_level = fill_level - self.operation_mode_id = operation_mode_id - - def is_idle(self) -> bool: - return self.idle - - def get_energy(self) -> JouleProfile: - return self.energy - - def get_fill_level(self) -> SoCProfile: - return self.fill_level - - def get_operation_mode_id(self) -> List[Dict[str, S2ActuatorConfiguration]]: - return self.operation_mode_id - diff --git a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py b/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py deleted file mode 100644 index d3a4ca3..0000000 --- a/flexmeasures_s2/profile_steering/frbc/selection_reason_result.py +++ /dev/null @@ -1,73 +0,0 @@ -class SelectionReason: - CONGESTION_CONSTRAINT = "C" - ENERGY_TARGET = "E" - TARIFF_TARGET = "T" - MIN_ENERGY = "M" - NO_ALTERNATIVE = "_" - EMERGENCY_STATE = "!" - - -class SelectionResult: - def __init__( - self, - result: bool, - reason: SelectionReason, - timestep: int, - system_description: str, - previous_state: str, - actuator_configurations: str, - fill_level: float, - bucket: str, - timestep_energy: float, - ): - self.result = result - self.reason = reason - self.timestep = timestep - self.system_description = system_description - self.previous_state = previous_state - self.actuator_configurations = actuator_configurations - self.fill_level = fill_level - self.bucket = bucket - self.timestep_energy = timestep_energy - - def get_timestep(self): - return self.timestep - - def get_system_description(self): - return self.system_description - - def get_previous_state(self): - return self.previous_state - - def get_actuator_configurations(self): - return self.actuator_configurations - - def get_fill_level(self): - return self.fill_level - - def get_bucket(self): - return self.bucket - - def get_timestep_energy(self): - return self.timestep_energy - - def get_sum_squared_distance(self): - return self.sum_squared_distance - - def get_sum_squared_constraint_violation(self): - return self.sum_squared_constraint_violation - - def get_sum_energy_cost(self): - return self.sum_energy_cost - - def get_sum_squared_energy(self): - return self.sum_squared_energy - - def get_timer_elapse_map(self): - return self.timer_elapse_map - - def get_device_state(self): - return self.device_state - - def get_selection_reason(self): - return self.selection_reason diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 31773aa..326cbfb 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -33,7 +33,18 @@ timestamp=datetime.datetime.now(tz=datetime.timezone.utc), energy_in_current_timestep=CommodityQuantity.ELECTRIC_POWER_L1, is_online=True, - + power_forecast=PowerForecast( + message_id=str(uuid.uuid4()), + valid_from=datetime.datetime.now(tz=datetime.timezone.utc), + elements=[ + PowerForecastElement( + values=[PowerForecastValue(0.0, CommodityQuantity.ELECTRIC_POWER_L1)] + ) + ], + ), + leakage_behaviours=[], + usage_forecasts=[], + fill_level_target_profiles=[], system_descriptions=[ FRBCSystemDescription( message_id=str(uuid.uuid4()), diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py index bd6db8a..a288fb6 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py @@ -1,12 +1,17 @@ import pytest from datetime import datetime, timezone, timedelta -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_planner import S2FrbcDevicePlanner -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import S2FrbcDeviceStateWrapper +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_planner import ( + S2FrbcDevicePlanner, +) +from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, +) from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from test_frbc_device import test_device_state from joule_profile_example import JouleProfileTarget + def test_create_initial_planning(): # Initialize the necessary objects for the test device_state = S2FrbcDeviceStateWrapper(test_device_state) @@ -14,14 +19,12 @@ def test_create_initial_planning(): profile_metadata = ProfileMetadata( profile_start=epoch_time, timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288 + nr_of_timesteps=288, ) plan_due_by_date = profile_metadata.get_profile_start() + timedelta(seconds=10) # Initialize the planner - planner = S2FrbcDevicePlanner( - device_state, profile_metadata, plan_due_by_date - ) + planner = S2FrbcDevicePlanner(device_state, profile_metadata, plan_due_by_date) # Call the method to test joule_profile = planner.create_initial_planning(plan_due_by_date) @@ -30,7 +33,7 @@ def test_create_initial_planning(): expected_joule_profile = JouleProfile( profile_start=profile_metadata.get_profile_start(), timestep_duration=profile_metadata.get_timestep_duration(), - elements=JouleProfileTarget + elements=JouleProfileTarget, ) # Assert that the output matches the expected output diff --git a/flexmeasures_s2/scheduler/schemas.py b/flexmeasures_s2/scheduler/schemas.py index 03f98f2..bed6480 100644 --- a/flexmeasures_s2/scheduler/schemas.py +++ b/flexmeasures_s2/scheduler/schemas.py @@ -3,7 +3,8 @@ from marshmallow import Schema, fields -class S2FlexModelSchema(Schema): ... +class S2FlexModelSchema(Schema): + ... class TNOTargetProfile(Schema): From 47316901869cd91e018c26469c4285df22e0286b Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 12 Feb 2025 22:00:47 +0100 Subject: [PATCH 13/33] test returns null joule profile but it returns Signed-off-by: Vlad Iftime --- flexmeasures_s2/api/somedata.py | 11 ++++++++ .../profile_steering/common/proposal.py | 1 - .../device_planner/device_planner.py | 5 ++-- .../device_planner/frbc/frbc_state.py | 27 +++++++++---------- .../frbc/s2_frbc_device_planner.py | 10 +++---- .../frbc/s2_frbc_device_state_wrapper.py | 3 +-- .../tests/test_frbc_device.py | 17 +++++++++--- .../tests/test_frbc_planning.py | 9 ++++--- 8 files changed, 52 insertions(+), 31 deletions(-) create mode 100755 flexmeasures_s2/api/somedata.py diff --git a/flexmeasures_s2/api/somedata.py b/flexmeasures_s2/api/somedata.py new file mode 100755 index 0000000..17608d9 --- /dev/null +++ b/flexmeasures_s2/api/somedata.py @@ -0,0 +1,11 @@ +from flask_security import auth_token_required +from flask_json import as_json + +from .. import flexmeasures_s2_api_bp + + +@flexmeasures_s2_api_bp.route("/somedata") +@auth_token_required +@as_json +def somedata(): + return dict(a=1, b=2) diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py index 82887af..c18db1b 100644 --- a/flexmeasures_s2/profile_steering/common/proposal.py +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -4,7 +4,6 @@ from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner -# TODO: need a DevicePlanner class class Proposal: def __init__( self, diff --git a/flexmeasures_s2/profile_steering/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/device_planner/device_planner.py index 24899ab..d576b91 100644 --- a/flexmeasures_s2/profile_steering/device_planner/device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/device_planner.py @@ -2,7 +2,6 @@ from typing import Optional from abc import ABC, abstractmethod from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.proposal import Proposal from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile from flexmeasures_s2.profile_steering.common.device_planner.device_plan import DevicePlan @@ -30,7 +29,7 @@ def create_improved_planning( diff_to_max_profile: JouleProfile, diff_to_min_profile: JouleProfile, plan_due_by_date: datetime, - ) -> Proposal: + ) -> 'Proposal': """Create an improved planning proposal. Args: @@ -57,7 +56,7 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: pass @abstractmethod - def accept_proposal(self, accepted_proposal: Proposal): + def accept_proposal(self, accepted_proposal: 'Proposal'): """Accept a proposal and update the device's planning. Args: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index c918cdf..c62dc8e 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -3,13 +3,12 @@ FRBCSystemDescription, ) from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( - S2FrbcDeviceStateWrapper, -) +import flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper + from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep +import flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( SelectionResult, SelectionReason, @@ -23,8 +22,8 @@ class FrbcState: def __init__( self, - device_state: S2FrbcDeviceStateWrapper, - timestep: FrbcTimestep, + device_state, + timestep, previous_state: Optional["FrbcState"] = None, actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, ): @@ -103,11 +102,11 @@ def calculate_state_values( * seconds ) self.fill_level -= ( - S2FrbcDeviceStateWrapper.get_leakage_rate(self.timestep, self.fill_level) + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate(self.timestep, self.fill_level) * seconds ) self.fill_level += self.timestep.get_forecasted_usage() - self.bucket = S2FrbcDeviceStateWrapper.calculate_bucket( + self.bucket = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( self.timestep, self.fill_level ) self.update_timers(previous_state, actuator_configurations) @@ -132,7 +131,7 @@ def update_timers( ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() if previous_operation_mode_id != new_operation_mode_id: - transition = S2FrbcDeviceStateWrapper.get_transition( + transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( self.timestep, actuator_id, previous_operation_mode_id, @@ -141,7 +140,7 @@ def update_timers( if transition is None: continue for timer_id in transition.get_start_timers(): - duration = S2FrbcDeviceStateWrapper.get_timer_duration( + duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( self.timestep, actuator_id, timer_id ) new_finished_at = self.timestep.get_start_date() + duration @@ -196,7 +195,7 @@ def calculate_scores(self, previous_state: "FrbcState"): def timer_key(actuator_id: str, timer_id: str) -> str: return f"{actuator_id}-{timer_id}" - def generate_next_timestep_states(self, target_timestep: FrbcTimestep): + def generate_next_timestep_states(self, target_timestep): all_actions = self.device_state.get_all_possible_actuator_configurations( target_timestep ) @@ -206,7 +205,7 @@ def generate_next_timestep_states(self, target_timestep: FrbcTimestep): @staticmethod def try_create_next_state( previous_state: "FrbcState", - target_timestep: FrbcTimestep, + target_timestep, actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], ): if ( @@ -224,7 +223,7 @@ def try_create_next_state( ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() if previous_operation_mode_id != new_operation_mode_id: - transition = S2FrbcDeviceStateWrapper.get_transition( + transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( target_timestep, actuator_id, previous_operation_mode_id, @@ -343,5 +342,5 @@ def get_selection_reason(self) -> Optional[SelectionReason]: def get_system_description(self) -> FRBCSystemDescription: return self.system_description - def get_timestep(self) -> FrbcTimestep: + def get_timestep(self): return self.timestep diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index a7c6bca..a371009 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -55,21 +55,21 @@ def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: latest_before_first_ptu = OperationModeProfileTree.get_latest_before( self.profile_metadata.get_profile_start(), storage_state.get_system_descriptions(), - lambda sd: sd.get_valid_from(), + lambda sd: sd.valid_from, ) if not storage_state.get_system_descriptions(): return False if latest_before_first_ptu is None: active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= self.profile_metadata.get_profile_start() + sd.valid_from <= self.profile_metadata.get_profile_end() + and sd.valid_from >= self.profile_metadata.get_profile_start() and sd.get_storage().get_status() is not None for sd in storage_state.get_system_descriptions() ) else: active_and_upcoming_system_descriptions_has_active_storage = any( - sd.get_valid_from() <= self.profile_metadata.get_profile_end() - and sd.get_valid_from() >= latest_before_first_ptu.get_valid_from() + sd.valid_from <= self.profile_metadata.get_profile_end() + and sd.valid_from >= latest_before_first_ptu.valid_from and sd.get_storage().get_status() is not None for sd in storage_state.get_system_descriptions() ) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index 4c4302d..d9c3a57 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -7,7 +7,6 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( FrbcOperationModeWrapper, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep from s2python.common.transition import Transition @@ -17,7 +16,7 @@ class S2FrbcDeviceStateWrapper: epsilon = 1e-4 - def __init__(self, device_state: S2FrbcDeviceState): + def __init__(self, device_state): self.device_state = device_state self.nr_of_buckets: int = device_state.get_computational_parameters().get_nr_of_buckets() self.nr_of_stratification_layers: int = 0 # Initialize appropriately diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 326cbfb..865d599 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -1,7 +1,7 @@ import datetime import uuid -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState from s2python.frbc import ( FRBCSystemDescription, @@ -21,6 +21,7 @@ PowerForecast, PowerForecastElement, PowerForecastValue, + ) @@ -33,12 +34,22 @@ timestamp=datetime.datetime.now(tz=datetime.timezone.utc), energy_in_current_timestep=CommodityQuantity.ELECTRIC_POWER_L1, is_online=True, + computational_parameters=S2FrbcDeviceState.ComputationalParameters( + nr_of_buckets=10, + stratification_layers=10, + ), power_forecast=PowerForecast( + start_time=datetime.datetime.now(tz=datetime.timezone.utc), message_id=str(uuid.uuid4()), - valid_from=datetime.datetime.now(tz=datetime.timezone.utc), elements=[ PowerForecastElement( - values=[PowerForecastValue(0.0, CommodityQuantity.ELECTRIC_POWER_L1)] + duration=int(datetime.timedelta(hours=1).total_seconds()), + power_values=[ + PowerForecastValue( + value_expected=0.0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], ) ], ), diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py index a288fb6..5fdef3e 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py @@ -1,9 +1,9 @@ import pytest from datetime import datetime, timezone, timedelta -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_planner import ( +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( S2FrbcDevicePlanner, ) -from flexmeasures_s2.profile_steering.frbc.s2_frbc_device_state_wrapper import ( +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata @@ -24,7 +24,7 @@ def test_create_initial_planning(): plan_due_by_date = profile_metadata.get_profile_start() + timedelta(seconds=10) # Initialize the planner - planner = S2FrbcDevicePlanner(device_state, profile_metadata, plan_due_by_date) + planner = S2FrbcDevicePlanner(test_device_state, profile_metadata, plan_due_by_date) # Call the method to test joule_profile = planner.create_initial_planning(plan_due_by_date) @@ -36,5 +36,8 @@ def test_create_initial_planning(): elements=JouleProfileTarget, ) + print(joule_profile) + print(expected_joule_profile) + print(joule_profile == expected_joule_profile) # Assert that the output matches the expected output assert joule_profile == expected_joule_profile From f305431ee72cd5120801a44eef8e959b57dcdc95 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Feb 2025 02:10:39 +0100 Subject: [PATCH 14/33] Created more robust testing. Still fails. --- flexmeasures_s2/api/somedata.py | 2 +- .../profile_steering/common/joule_profile.py | 2 +- .../profile_steering/common/proposal.py | 21 +- .../profile_steering/common/soc_profile.py | 22 +- .../profile_steering/common/target_profile.py | 56 +- .../device_planner/device_planner.py | 80 --- .../device_planner/frbc/frbc_state.py | 12 +- .../device_planner/frbc/frbc_timestep.py | 19 +- .../frbc/operation_mode_profile_tree.py | 77 ++- .../frbc/s2_frbc_device_planner.py | 33 +- .../frbc/s2_frbc_device_state.py | 8 +- .../frbc/s2_frbc_device_state_wrapper.py | 157 ++++-- .../tests/test_frbc_device.py | 525 ++++++++++++------ .../tests/test_frbc_planning.py | 43 -- flexmeasures_s2/scheduler/schemas.py | 3 +- 15 files changed, 678 insertions(+), 382 deletions(-) delete mode 100644 flexmeasures_s2/profile_steering/device_planner/device_planner.py delete mode 100644 flexmeasures_s2/profile_steering/tests/test_frbc_planning.py diff --git a/flexmeasures_s2/api/somedata.py b/flexmeasures_s2/api/somedata.py index 17608d9..80a88e4 100755 --- a/flexmeasures_s2/api/somedata.py +++ b/flexmeasures_s2/api/somedata.py @@ -1,5 +1,5 @@ -from flask_security import auth_token_required from flask_json import as_json +from flask_security import auth_token_required from .. import flexmeasures_s2_api_bp diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py index d7dce45..dbb0215 100644 --- a/flexmeasures_s2/profile_steering/common/joule_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -82,7 +82,7 @@ def absolute_values(self) -> "JouleProfile": ) def sum_quadratic_distance(self) -> float: - return sum(e ** 2 for e in self.elements if e is not None) + return sum(e**2 for e in self.elements if e is not None) def is_below_or_equal(self, other: "JouleProfile") -> bool: if not self.is_compatible(other): diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py index c18db1b..cf657da 100644 --- a/flexmeasures_s2/profile_steering/common/proposal.py +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -1,7 +1,9 @@ from typing import Optional from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) class Proposal: @@ -28,7 +30,9 @@ def get_global_improvement_value(self) -> float: if self.global_improvement_value is None: self.global_improvement_value = ( self.global_diff_target.sum_quadratic_distance() - - self.global_diff_target.add(self.old_plan).subtract(self.proposed_plan).sum_quadratic_distance() + - self.global_diff_target.add(self.old_plan) + .subtract(self.proposed_plan) + .sum_quadratic_distance() ) return self.global_improvement_value @@ -56,14 +60,18 @@ def get_congestion_improvement_value(self) -> float: self.old_plan.get_profile_metadata().get_timestep_duration(), [0] * len(self.old_plan.get_elements()), ) - exceed_max_target_old = self.diff_to_congestion_max.minimum(zero_profile).sum_quadratic_distance() + exceed_max_target_old = self.diff_to_congestion_max.minimum( + zero_profile + ).sum_quadratic_distance() exceed_max_target_proposal = ( self.diff_to_congestion_max.add(self.old_plan) .subtract(self.proposed_plan) .minimum(zero_profile) .sum_quadratic_distance() ) - exceed_min_target_old = self.diff_to_congestion_min.maximum(zero_profile).sum_quadratic_distance() + exceed_min_target_old = self.diff_to_congestion_min.maximum( + zero_profile + ).sum_quadratic_distance() exceed_min_target_proposal = ( self.diff_to_congestion_min.add(self.old_plan) .subtract(self.proposed_plan) @@ -86,7 +94,10 @@ def get_congestion_improvement_value(self) -> float: def is_preferred_to(self, other: "Proposal") -> bool: if self.get_congestion_improvement_value() >= 0: - if self.get_global_improvement_value() > other.get_global_improvement_value(): + if ( + self.get_global_improvement_value() + > other.get_global_improvement_value() + ): return True elif ( self.get_global_improvement_value() diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py index d8ce1b4..bf1fb9c 100644 --- a/flexmeasures_s2/profile_steering/common/soc_profile.py +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -5,7 +5,9 @@ class SoCProfile(AbstractProfile[float, "SoCProfile"]): - def __init__(self, profile_start, timestep_duration, elements: Optional[List[float]] = None): + def __init__( + self, profile_start, timestep_duration, elements: Optional[List[float]] = None + ): self.profile_start = profile_start self.timestep_duration = timestep_duration super().__init__(profile_start, elements if elements is not None else []) @@ -17,9 +19,11 @@ def __str__(self) -> str: return f"SoCProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" def is_compatible(self, other: AbstractProfile) -> bool: - return self.metadata.get_timestep_duration() == other.get_profile_metadata().get_timestep_duration() and len( - self.elements - ) == len(other.get_elements()) + return ( + self.metadata.get_timestep_duration() + == other.get_profile_metadata().get_timestep_duration() + and len(self.elements) == len(other.get_elements()) + ) def validate(self, profile_metadata: ProfileMetadata, elements: List[float]): super().validate(profile_metadata, elements) @@ -29,11 +33,17 @@ def subprofile(self, new_start_date: datetime) -> "SoCProfile": if index < 0: raise ValueError("New start date is outside profile range") new_elements = self.elements[index:] - return SoCProfile(new_start_date, self.metadata.get_timestep_duration(), new_elements) + return SoCProfile( + new_start_date, self.metadata.get_timestep_duration(), new_elements + ) def adjust_nr_of_elements(self, nr_of_elements: int) -> "SoCProfile": if nr_of_elements < len(self.elements): new_elements = self.elements[:nr_of_elements] else: new_elements = self.elements + [0.0] * (nr_of_elements - len(self.elements)) - return SoCProfile(self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), new_elements) + return SoCProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + new_elements, + ) diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py index 2729a99..026f227 100644 --- a/flexmeasures_s2/profile_steering/common/target_profile.py +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -5,7 +5,9 @@ from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -class TargetProfile(AbstractProfile[Union["TargetProfile.Element", None], "TargetProfile"]): +class TargetProfile( + AbstractProfile[Union["TargetProfile.Element", None], "TargetProfile"] +): class Element: pass @@ -30,7 +32,11 @@ def __init__( metadata = ProfileMetadata(profile_start, timestep_duration, len(elements)) super().__init__(metadata, elements) - def validate(self, profile_metadata: ProfileMetadata, elements: List["TargetProfile.Element | None"]): + def validate( + self, + profile_metadata: ProfileMetadata, + elements: List["TargetProfile.Element | None"], + ): super().validate(profile_metadata, elements) # Add any TargetProfile-specific validation if needed @@ -39,13 +45,17 @@ def subprofile(self, new_start_date: datetime) -> "TargetProfile": if index < 0: raise ValueError("New start date is outside profile range") new_elements = self.elements[index:] - return TargetProfile(new_start_date, self.metadata.get_timestep_duration(), new_elements) + return TargetProfile( + new_start_date, self.metadata.get_timestep_duration(), new_elements + ) def adjust_nr_of_elements(self, nr_of_elements: int) -> "TargetProfile": if nr_of_elements < len(self.elements): new_elements = self.elements[:nr_of_elements] else: - new_elements = self.elements + [self.NULL_ELEMENT] * (nr_of_elements - len(self.elements)) + new_elements = self.elements + [self.NULL_ELEMENT] * ( + nr_of_elements - len(self.elements) + ) return TargetProfile( self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), @@ -53,15 +63,25 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "TargetProfile": ) def is_compatible(self, other: AbstractProfile) -> bool: - return self.metadata.get_timestep_duration() == other.get_profile_metadata().get_timestep_duration() and len( - self.elements - ) == len(other.get_elements()) + return ( + self.metadata.get_timestep_duration() + == other.get_profile_metadata().get_timestep_duration() + and len(self.elements) == len(other.get_elements()) + ) def get_total_energy(self) -> int: - return sum(e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)) + return sum( + e.get_joules() + for e in self.elements + if isinstance(e, TargetProfile.JouleElement) + ) def target_elements_to_joule_profile(self) -> JouleProfile: - joules = [e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)] + joules = [ + e.get_joules() + for e in self.elements + if isinstance(e, TargetProfile.JouleElement) + ] return JouleProfile( self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), @@ -69,7 +89,9 @@ def target_elements_to_joule_profile(self) -> JouleProfile: ) def nr_of_joule_target_elements(self) -> int: - return len([e for e in self.elements if isinstance(e, TargetProfile.JouleElement)]) + return len( + [e for e in self.elements if isinstance(e, TargetProfile.JouleElement)] + ) def subtract(self, other: JouleProfile) -> "TargetProfile": if not self.is_compatible(other): @@ -79,7 +101,9 @@ def subtract(self, other: JouleProfile) -> "TargetProfile": if isinstance(element, TargetProfile.JouleElement): other_energy = other.get_energy_for_timestep(i) if other_energy is not None: - diff_elements.append(TargetProfile.JouleElement(element.get_joules() - other_energy)) + diff_elements.append( + TargetProfile.JouleElement(element.get_joules() - other_energy) + ) else: diff_elements.append(self.NULL_ELEMENT) else: @@ -98,7 +122,9 @@ def add(self, other: JouleProfile) -> "TargetProfile": if isinstance(element, TargetProfile.JouleElement): other_energy = other.get_energy_for_timestep(i) if other_energy is not None: - sum_elements.append(TargetProfile.JouleElement(element.get_joules() + other_energy)) + sum_elements.append( + TargetProfile.JouleElement(element.get_joules() + other_energy) + ) else: sum_elements.append(self.NULL_ELEMENT) else: @@ -110,7 +136,11 @@ def add(self, other: JouleProfile) -> "TargetProfile": ) def sum_quadratic_distance(self) -> float: - return sum(e.get_joules() ** 2 for e in self.elements if isinstance(e, TargetProfile.JouleElement)) + return sum( + e.get_joules() ** 2 + for e in self.elements + if isinstance(e, TargetProfile.JouleElement) + ) def __str__(self) -> str: return f"TargetProfile(elements={self.elements}, profile_start={self.metadata.get_profile_start()}, timestep_duration={self.metadata.get_timestep_duration()})" diff --git a/flexmeasures_s2/profile_steering/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/device_planner/device_planner.py deleted file mode 100644 index d576b91..0000000 --- a/flexmeasures_s2/profile_steering/device_planner/device_planner.py +++ /dev/null @@ -1,80 +0,0 @@ -from datetime import datetime -from typing import Optional -from abc import ABC, abstractmethod -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.common.device_planner.device_plan import DevicePlan - - -class DevicePlanner(ABC): - @abstractmethod - def get_device_id(self) -> str: - """Get the device ID.""" - pass - - @abstractmethod - def get_device_name(self) -> str: - """Get the device name.""" - pass - - @abstractmethod - def get_connection_id(self) -> str: - """Get the connection ID.""" - pass - - @abstractmethod - def create_improved_planning( - self, - cluster_diff_profile: TargetProfile, - diff_to_max_profile: JouleProfile, - diff_to_min_profile: JouleProfile, - plan_due_by_date: datetime, - ) -> 'Proposal': - """Create an improved planning proposal. - - Args: - cluster_diff_profile: The difference profile for the cluster - diff_to_max_profile: The difference to the maximum profile - diff_to_min_profile: The difference to the minimum profile - plan_due_by_date: The date by which the plan must be ready - - Returns: - A Proposal object representing the improved plan - """ - pass - - @abstractmethod - def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: - """Create an initial planning profile. - - Args: - plan_due_by_date: The date by which the plan must be ready - - Returns: - A JouleProfile representing the initial plan - """ - pass - - @abstractmethod - def accept_proposal(self, accepted_proposal: 'Proposal'): - """Accept a proposal and update the device's planning. - - Args: - accepted_proposal: The proposal to accept - """ - pass - - @abstractmethod - def get_current_profile(self) -> JouleProfile: - """Get the current profile of the device.""" - pass - - @abstractmethod - def get_device_plan(self) -> Optional[DevicePlan]: - """Get the device plan.""" - pass - - @abstractmethod - def get_priority_class(self) -> int: - """Get the priority class of the device.""" - pass diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index c62dc8e..7cdffc4 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -102,12 +102,16 @@ def calculate_state_values( * seconds ) self.fill_level -= ( - s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate(self.timestep, self.fill_level) + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) * seconds ) self.fill_level += self.timestep.get_forecasted_usage() - self.bucket = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( - self.timestep, self.fill_level + self.bucket = ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( + self.timestep, self.fill_level + ) ) self.update_timers(previous_state, actuator_configurations) self.calculate_scores(previous_state) @@ -188,7 +192,7 @@ def calculate_scores(self, previous_state: "FrbcState"): + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 + previous_state.get_sum_squared_energy() + self.timestep_energy**2 ) @staticmethod diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index 4bd9f5f..d6e8081 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -1,6 +1,8 @@ from datetime import datetime, timedelta from typing import List, Optional -from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import NumberRangeWrapper +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( + NumberRangeWrapper, +) from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( @@ -47,7 +49,9 @@ def __init__( def get_nr_of_buckets(self) -> int: return self.nr_of_buckets - def set_targets(self, target: float, min_constraint: float, max_constraint: float) -> None: + def set_targets( + self, target: float, min_constraint: float, max_constraint: float + ) -> None: self.target = target self.min_constraint = min_constraint self.max_constraint = max_constraint @@ -66,7 +70,8 @@ def add_state(self, state: FrbcState) -> None: else: if ( self.emergency_state is None - or state.get_fill_level_distance() < self.emergency_state.get_fill_level_distance() + or state.get_fill_level_distance() + < self.emergency_state.get_fill_level_distance() ): self.emergency_state = state state.set_selection_reason(SelectionReason.EMERGENCY_STATE) @@ -118,10 +123,14 @@ def get_final_states_within_fill_level_target(self) -> List[FrbcState]: final_states = self.get_final_states() if self.fill_level_target is None: return final_states - final_states = [s for s in final_states if self.state_is_within_fill_level_target_range(s)] + final_states = [ + s for s in final_states if self.state_is_within_fill_level_target_range(s) + ] if final_states: return final_states - best_state = min(self.get_final_states(), key=self.get_fill_level_target_distance) + best_state = min( + self.get_final_states(), key=self.get_fill_level_target_distance + ) return [best_state] def state_is_within_fill_level_target_range(self, state: FrbcState) -> bool: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index d4f8914..1d50247 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -1,7 +1,9 @@ from datetime import datetime, timedelta from typing import List, Optional, Any -from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import ( + FrbcTimestep, +) from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) @@ -10,7 +12,9 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.fill_level_target_util import ( FillLevelTargetUtil, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.usage_forecast_util import UsageForecastUtil +from flexmeasures_s2.profile_steering.device_planner.frbc.usage_forecast_util import ( + UsageForecastUtil, +) from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( NumberRangeWrapper, ) @@ -18,7 +22,9 @@ from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) from pint import UnitRegistry SI = UnitRegistry() @@ -36,14 +42,18 @@ def __init__( self.device_state = S2FrbcDeviceStateWrapper(device_state) self.profile_metadata = profile_metadata self.plan_due_by_date = plan_due_by_date - self.timestep_duration_seconds = int(profile_metadata.get_timestep_duration().total_seconds()) + self.timestep_duration_seconds = int( + profile_metadata.get_timestep_duration().total_seconds() + ) self.timesteps: List[FrbcTimestep] = [] self.generate_timesteps() def generate_timesteps(self) -> None: time_step_start = self.profile_metadata.get_profile_start() for i in range(self.profile_metadata.get_nr_of_timesteps()): - time_step_end = time_step_start + self.profile_metadata.get_timestep_duration() + time_step_end = ( + time_step_start + self.profile_metadata.get_timestep_duration() + ) if i == 0: time_step_start = self.plan_due_by_date time_step_start_dt = time_step_start @@ -64,7 +74,11 @@ def generate_timesteps(self) -> None: ) current_fill_level_target = None if current_fill_level: - current_fill_level_target = FillLevelTargetUtil.from_fill_level_target_profile(current_fill_level) + current_fill_level_target = ( + FillLevelTargetUtil.from_fill_level_target_profile( + current_fill_level + ) + ) fill_level_target = self.get_fill_level_target_for_timestep( current_fill_level_target, time_step_start, time_step_end ) @@ -75,7 +89,9 @@ def generate_timesteps(self) -> None: ) current_usage_forecast_profile = None if current_usage_forecast: - current_usage_forecast_profile = UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) + current_usage_forecast_profile = ( + UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) + ) usage_forecast = self.get_usage_forecast_for_timestep( current_usage_forecast_profile, time_step_start, time_step_end ) @@ -93,7 +109,9 @@ def generate_timesteps(self) -> None: time_step_start = time_step_end @staticmethod - def get_latest_before(before: datetime, select_from: List[Any], get_date_time: Any) -> Optional[Any]: + def get_latest_before( + before: datetime, select_from: List[Any], get_date_time: Any + ) -> Optional[Any]: latest_before = None latest_before_date_time = None if select_from: @@ -101,7 +119,8 @@ def get_latest_before(before: datetime, select_from: List[Any], get_date_time: A if current: current_date_time = get_date_time(current) if current_date_time <= before and ( - latest_before is None or current_date_time > latest_before_date_time + latest_before is None + or current_date_time > latest_before_date_time ): latest_before = current latest_before_date_time = current_date_time @@ -117,10 +136,16 @@ def get_fill_level_target_for_timestep( return None time_step_end -= timedelta(milliseconds=1) lower, upper = None, None - for e in fill_level_target_profile.get_elements_in_range(time_step_start, time_step_end): - if e.get_lower_limit() is not None and (lower is None or e.get_lower_limit() > lower): + for e in fill_level_target_profile.get_elements_in_range( + time_step_start, time_step_end + ): + if e.get_lower_limit() is not None and ( + lower is None or e.get_lower_limit() > lower + ): lower = e.get_lower_limit() - if e.get_upper_limit() is not None and (upper is None or e.get_upper_limit() < upper): + if e.get_upper_limit() is not None and ( + upper is None or e.get_upper_limit() < upper + ): upper = e.get_upper_limit() if lower is None and upper is None: return None @@ -141,7 +166,9 @@ def get_usage_forecast_for_timestep( usage += element.get_usage() return usage - def find_best_plan(self, target_profile: Any, diff_to_min_profile: Any, diff_to_max_profile: Any) -> S2FrbcPlan: + def find_best_plan( + self, target_profile: Any, diff_to_min_profile: Any, diff_to_max_profile: Any + ) -> S2FrbcPlan: for i, ts in enumerate(self.timesteps): ts.clear() ts.set_targets( @@ -163,7 +190,9 @@ def find_best_plan(self, target_profile: Any, diff_to_min_profile: Any, diff_to_ final_states = current_timestep.get_final_states_within_fill_level_target() for frbc_state in final_states: frbc_state.generate_next_timestep_states(next_timestep) - end_state = self.find_best_end_state(last_timestep.get_final_states_within_fill_level_target()) + end_state = self.find_best_end_state( + last_timestep.get_final_states_within_fill_level_target() + ) return self.convert_to_plan(first_timestep_index, end_state) @staticmethod @@ -174,12 +203,16 @@ def find_best_end_state(states: List[FrbcState]) -> FrbcState: best_state = state return best_state - def convert_to_plan(self, first_timestep_index_with_state: int, end_state: FrbcState) -> S2FrbcPlan: + def convert_to_plan( + self, first_timestep_index_with_state: int, end_state: FrbcState + ) -> S2FrbcPlan: energy: List[int] = [0] * self.profile_metadata.get_nr_of_timesteps() fill_level: List[float] = [0.0] * self.profile_metadata.get_nr_of_timesteps() actuators: List[dict] = [{}] * self.profile_metadata.get_nr_of_timesteps() insight_elements = [None] * self.profile_metadata.get_nr_of_timesteps() - state_selection_reasons: List[str] = [""] * self.profile_metadata.get_nr_of_timesteps() + state_selection_reasons: List[str] = [ + "" + ] * self.profile_metadata.get_nr_of_timesteps() state = end_state for i in range(self.profile_metadata.get_nr_of_timesteps() - 1, -1, -1): if i >= first_timestep_index_with_state: @@ -193,14 +226,20 @@ def convert_to_plan(self, first_timestep_index_with_state: int, end_state: FrbcS fill_level[i] = 0.0 actuators[i] = {} insight_elements[i] = None - energy[0] += self.device_state.get_energy_in_current_timestep().to(SI.joule).magnitude + energy[0] += ( + self.device_state.get_energy_in_current_timestep().to(SI.joule).magnitude + ) return S2FrbcPlan( False, JouleProfile( - self.profile_metadata.get_profile_start(), self.profile_metadata.get_timestep_duration(), energy + self.profile_metadata.get_profile_start(), + self.profile_metadata.get_timestep_duration(), + energy, ), SoCProfile( - self.profile_metadata.get_profile_start(), self.profile_metadata.get_timestep_duration(), fill_level + self.profile_metadata.get_profile_start(), + self.profile_metadata.get_timestep_duration(), + fill_level, ), actuators, ) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index a371009..cca6f8d 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -17,8 +17,12 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.operation_mode_profile_tree import ( OperationModeProfileTree, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState -from flexmeasures_s2.profile_steering.device_planner.device_planner import DevicePlanner +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) # make sure this is a DevicePlanner @@ -73,7 +77,10 @@ def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: and sd.get_storage().get_status() is not None for sd in storage_state.get_system_descriptions() ) - return storage_state._is_online() and active_and_upcoming_system_descriptions_has_active_storage + return ( + storage_state._is_online() + and active_and_upcoming_system_descriptions_has_active_storage + ) def get_device_id(self) -> str: return self.s2_frbc_state.get_device_id() @@ -100,7 +107,9 @@ def create_improved_planning( min_profile = diff_to_min.add(self.accepted_plan.get_energy()) if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan(target, min_profile, max_profile) + self.latest_plan = self.state_tree.find_best_plan( + target, min_profile, max_profile + ) else: self.latest_plan = S2FrbcPlan( idle=True, @@ -141,9 +150,13 @@ def accept_proposal(self, accepted_proposal: Proposal) -> None: if self.latest_plan is None: raise ValueError("No latest plan found") if accepted_proposal.get_origin() != self: - raise ValueError(f"Storage controller '{self.get_device_id()}' received a proposal that he did not send.") + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) if not accepted_proposal.get_proposed_plan() == self.latest_plan.get_energy(): - raise ValueError(f"Storage controller '{self.get_device_id()}' received a proposal that he did not send.") + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) if accepted_proposal.get_congestion_improvement_value() < 0: raise ValueError( f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" @@ -167,7 +180,9 @@ def get_device_plan(self) -> Optional[DevicePlan]: connection_id=self.get_connection_id(), energy_profile=self.accepted_plan.get_energy(), fill_level_profile=self.accepted_plan.get_fill_level(), - instruction_profile=self.convert_plan_to_instructions(self.profile_metadata, self.accepted_plan), + instruction_profile=self.convert_plan_to_instructions( + self.profile_metadata, self.accepted_plan + ), ) @staticmethod @@ -178,7 +193,9 @@ def convert_plan_to_instructions( actuator_configurations_per_timestep = device_plan.get_operation_mode_id() if actuator_configurations_per_timestep is not None: for actuator_configurations in actuator_configurations_per_timestep: - new_element = S2FrbcInstructionProfile.Element(not actuator_configurations, actuator_configurations) + new_element = S2FrbcInstructionProfile.Element( + not actuator_configurations, actuator_configurations + ) elements.append(new_element) else: elements = [None] * profile_metadata.get_nr_of_timesteps() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py index 61fb805..09bfc7e 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py @@ -7,6 +7,7 @@ FRBCUsageForecast, FRBCFillLevelTargetProfile, ) +from s2python.generated.gen_s2 import PowerValue class S2FrbcDeviceState: @@ -28,7 +29,7 @@ def __init__( connection_id: str, priority_class: int, timestamp: datetime, - energy_in_current_timestep: CommodityQuantity, + energy_in_current_timestep: PowerValue, is_online: bool, power_forecast: Optional[PowerForecast], system_descriptions: List[FRBCSystemDescription], @@ -50,7 +51,7 @@ def __init__( self.usage_forecasts = usage_forecasts self.fill_level_target_profiles = fill_level_target_profiles self.computational_parameters = computational_parameters - + def get_system_descriptions(self) -> List[FRBCSystemDescription]: return self.system_descriptions @@ -80,7 +81,6 @@ def get_computational_parameters(self) -> ComputationalParameters: def get_power_forecast(self) -> Optional[PowerForecast]: return self.power_forecast - + def get_energy_in_current_timestep(self) -> CommodityQuantity: return self.energy_in_current_timestep - diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index d9c3a57..cf18ee9 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -7,7 +7,9 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( FrbcOperationModeWrapper, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import FrbcTimestep +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import ( + FrbcTimestep, +) from s2python.common.transition import Transition from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription @@ -18,9 +20,13 @@ class S2FrbcDeviceStateWrapper: def __init__(self, device_state): self.device_state = device_state - self.nr_of_buckets: int = device_state.get_computational_parameters().get_nr_of_buckets() + self.nr_of_buckets: int = ( + device_state.get_computational_parameters().get_nr_of_buckets() + ) self.nr_of_stratification_layers: int = 0 # Initialize appropriately - self.actuator_operation_mode_map_per_timestep: Dict[datetime, Dict[str, List[str]]] = {} + self.actuator_operation_mode_map_per_timestep: Dict[ + datetime, Dict[str, List[str]] + ] = {} self.all_actions: Dict[datetime, List[Dict[str, S2ActuatorConfiguration]]] = {} self.operation_mode_uses_factor_map: Dict[str, bool] = {} self.operation_modes: Dict[str, FrbcOperationModeWrapper] = {} @@ -51,27 +57,41 @@ def get_actuators(self, target_timestep: FrbcTimestep) -> List[str]: target_timestep.get_start_date() ) if actuator_operation_mode_map is None: - actuator_operation_mode_map = self.create_actuator_operation_mode_map(target_timestep) + actuator_operation_mode_map = self.create_actuator_operation_mode_map( + target_timestep + ) return list(actuator_operation_mode_map.keys()) - def get_normal_operation_modes_for_actuator(self, target_timestep: FrbcTimestep, actuator_id: str) -> List[str]: + def get_normal_operation_modes_for_actuator( + self, target_timestep: FrbcTimestep, actuator_id: str + ) -> List[str]: actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( target_timestep.get_start_date() ) if actuator_operation_mode_map is None: - actuator_operation_mode_map = self.create_actuator_operation_mode_map(target_timestep) + actuator_operation_mode_map = self.create_actuator_operation_mode_map( + target_timestep + ) return actuator_operation_mode_map.get(actuator_id, []) - def create_actuator_operation_mode_map(self, target_timestep: FrbcTimestep) -> Dict[str, List[str]]: + def create_actuator_operation_mode_map( + self, target_timestep: FrbcTimestep + ) -> Dict[str, List[str]]: actuator_operation_mode_map = {} for a in target_timestep.get_system_description().get_actuators(): actuator_operation_mode_map[a.get_id()] = [ - om.get_id() for om in a.get_operation_modes() if not om.get_abnormal_condition_only() + om.get_id() + for om in a.get_operation_modes() + if not om.get_abnormal_condition_only() ] - self.actuator_operation_mode_map_per_timestep[target_timestep.get_start_date()] = actuator_operation_mode_map + self.actuator_operation_mode_map_per_timestep[ + target_timestep.get_start_date() + ] = actuator_operation_mode_map return actuator_operation_mode_map - def get_operation_mode(self, target_timestep, actuator_id: str, operation_mode_id: str): + def get_operation_mode( + self, target_timestep, actuator_id: str, operation_mode_id: str + ): from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( FrbcOperationModeWrapper, ) @@ -80,7 +100,9 @@ def get_operation_mode(self, target_timestep, actuator_id: str, operation_mode_i if om_key in self.operation_modes: return self.operation_modes[om_key] actuators = target_timestep.get_system_description().get_actuators() - found_actuator_description = next((ad for ad in actuators if ad.get_id() == actuator_id), None) + found_actuator_description = next( + (ad for ad in actuators if ad.get_id() == actuator_id), None + ) if found_actuator_description: for operation_mode in found_actuator_description.get_operation_modes(): if operation_mode.get_id() == operation_mode_id: @@ -94,7 +116,9 @@ def operation_mode_uses_factor( ) -> bool: key = f"{actuator_id}-{operation_mode_id}" if key not in self.operation_mode_uses_factor_map: - result = self.get_operation_mode(target_timestep, actuator_id, operation_mode_id).is_uses_factor() + result = self.get_operation_mode( + target_timestep, actuator_id, operation_mode_id + ).is_uses_factor() self.operation_mode_uses_factor_map[key] = result return self.operation_mode_uses_factor_map[key] @@ -106,20 +130,38 @@ def get_all_possible_actuator_configurations( possible_actuator_configs = {} for actuator_id in self.get_actuators(target_timestep): actuator_list = [] - for operation_mode_id in self.get_normal_operation_modes_for_actuator(target_timestep, actuator_id): - if self.operation_mode_uses_factor(target_timestep, actuator_id, operation_mode_id): + for operation_mode_id in self.get_normal_operation_modes_for_actuator( + target_timestep, actuator_id + ): + if self.operation_mode_uses_factor( + target_timestep, actuator_id, operation_mode_id + ): for i in range(self.nr_of_stratification_layers + 1): - factor_for_actuator = i * (1.0 / self.nr_of_stratification_layers) - actuator_list.append(S2ActuatorConfiguration(operation_mode_id, factor_for_actuator)) + factor_for_actuator = i * ( + 1.0 / self.nr_of_stratification_layers + ) + actuator_list.append( + S2ActuatorConfiguration( + operation_mode_id, factor_for_actuator + ) + ) else: - actuator_list.append(S2ActuatorConfiguration(operation_mode_id, 0.0)) + actuator_list.append( + S2ActuatorConfiguration(operation_mode_id, 0.0) + ) possible_actuator_configs[actuator_id] = actuator_list keys = list(possible_actuator_configs.keys()) actions_for_timestep = [] combination = [0] * len(keys) - actions_for_timestep.append(self.combination_to_map(combination, keys, possible_actuator_configs)) + actions_for_timestep.append( + self.combination_to_map(combination, keys, possible_actuator_configs) + ) while self.increase(combination, keys, possible_actuator_configs): - actions_for_timestep.append(self.combination_to_map(combination, keys, possible_actuator_configs)) + actions_for_timestep.append( + self.combination_to_map( + combination, keys, possible_actuator_configs + ) + ) self.all_actions[timestep_date] = actions_for_timestep return self.all_actions[timestep_date] @@ -157,15 +199,24 @@ def get_transition( to_operation_mode_id: str, ) -> Optional[Transition]: - actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description(target_timestep, actuator_id) + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( + target_timestep, actuator_id + ) if actuator_description is None: - raise ValueError(f"Actuator description not found for actuator {actuator_id}") + raise ValueError( + f"Actuator description not found for actuator {actuator_id}" + ) for transition in actuator_description.get_transitions(): - if transition.get_from() == from_operation_mode_id and transition.get_to() == to_operation_mode_id: + if ( + transition.get_from() == from_operation_mode_id + and transition.get_to() == to_operation_mode_id + ): return transition return None - def get_operation_mode_power(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: + def get_operation_mode_power( + self, om: FrbcOperationModeWrapper, fill_level: float, factor: float + ) -> float: element = self.find_operation_mode_element(om, fill_level) power_watt = 0 @@ -196,10 +247,16 @@ def find_operation_mode_element(om, fill_level): if element is None: first = om.get_elements()[0] last = om.get_elements()[-1] - element = first if fill_level < first.get_fill_level_range().get_start_of_range() else last + element = ( + first + if fill_level < first.get_fill_level_range().get_start_of_range() + else last + ) return element - def get_operation_mode_fill_rate(self, om: FrbcOperationModeWrapper, fill_level: float, factor: float) -> float: + def get_operation_mode_fill_rate( + self, om: FrbcOperationModeWrapper, fill_level: float, factor: float + ) -> float: element = self.find_operation_mode_element(om, fill_level) fill_rate = element.get_fill_rate() start = fill_rate.get_end_of_range() @@ -211,10 +268,14 @@ def get_leakage_rate(target_timestep: FrbcTimestep, fill_level: float) -> float: if target_timestep.get_leakage_behaviour() is None: return 0 else: - return S2FrbcDeviceStateWrapper.find_leakage_element(target_timestep, fill_level).get_leakage_rate() + return S2FrbcDeviceStateWrapper.find_leakage_element( + target_timestep, fill_level + ).get_leakage_rate() @staticmethod - def find_leakage_element(target_timestep: FrbcTimestep, fill_level: float) -> FRBCLeakageBehaviourElement: + def find_leakage_element( + target_timestep: FrbcTimestep, fill_level: float + ) -> FRBCLeakageBehaviourElement: leakage = target_timestep.get_leakage_behaviour() element = next( ( @@ -229,16 +290,26 @@ def find_leakage_element(target_timestep: FrbcTimestep, fill_level: float) -> FR if element is None: first = leakage.get_elements()[0] last = leakage.get_elements()[-1] - element = first if fill_level < first.get_fill_level_range().get_start_of_range() else last + element = ( + first + if fill_level < first.get_fill_level_range().get_start_of_range() + else last + ) return element @staticmethod def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: fill_level_lower_limit = ( - target_timestep.get_system_description().get_storage().get_fill_level_range().get_start_of_range() + target_timestep.get_system_description() + .get_storage() + .get_fill_level_range() + .get_start_of_range() ) fill_level_upper_limit = ( - target_timestep.get_system_description().get_storage().get_fill_level_range().get_end_of_range() + target_timestep.get_system_description() + .get_storage() + .get_fill_level_range() + .get_end_of_range() ) return int( (fill_level - fill_level_lower_limit) @@ -247,10 +318,16 @@ def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: ) @staticmethod - def get_timer_duration_milliseconds(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> int: - actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description(target_timestep, actuator_id) + def get_timer_duration_milliseconds( + target_timestep: FrbcTimestep, actuator_id: str, timer_id: str + ) -> int: + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( + target_timestep, actuator_id + ) if actuator_description is None: - raise ValueError(f"Actuator description not found for actuator {actuator_id}") + raise ValueError( + f"Actuator description not found for actuator {actuator_id}" + ) timer = next( (t for t in actuator_description.get_timers() if t.get_id() == timer_id), None, @@ -258,7 +335,9 @@ def get_timer_duration_milliseconds(target_timestep: FrbcTimestep, actuator_id: return timer.get_duration() if timer else 0 @staticmethod - def get_timer_duration(target_timestep: FrbcTimestep, actuator_id: str, timer_id: str) -> timedelta: + def get_timer_duration( + target_timestep: FrbcTimestep, actuator_id: str, timer_id: str + ) -> timedelta: return timedelta( milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( target_timestep, actuator_id, timer_id @@ -266,9 +345,15 @@ def get_timer_duration(target_timestep: FrbcTimestep, actuator_id: str, timer_id ) @staticmethod - def get_actuator_description(target_timestep: FrbcTimestep, actuator_id: str) -> Optional[FRBCActuatorDescription]: + def get_actuator_description( + target_timestep: FrbcTimestep, actuator_id: str + ) -> Optional[FRBCActuatorDescription]: return next( - (ad for ad in target_timestep.get_system_description().get_actuators() if ad.get_id() == actuator_id), + ( + ad + for ad in target_timestep.get_system_description().get_actuators() + if ad.get_id() == actuator_id + ), None, ) diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 865d599..87e7ac1 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -1,165 +1,380 @@ -import datetime +import pytest +from datetime import datetime, timedelta, timezone import uuid -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState - -from s2python.frbc import ( - FRBCSystemDescription, - FRBCActuatorDescription, - FRBCOperationMode, - FRBCOperationModeElement, - FRBCStorageDescription, +from s2python.frbc.frbc_actuator_description import FRBCActuatorDescription +from s2python.frbc.frbc_fill_level_target_profile_element import ( + FRBCFillLevelTargetProfileElement, ) - -from s2python.common import ( - Commodity, - Transition, - Timer, - NumberRange, - PowerRange, - CommodityQuantity, - PowerForecast, - PowerForecastElement, - PowerForecastValue, - +from s2python.frbc.frbc_leakage_behaviour_element import \ + FRBCLeakageBehaviourElement +from s2python.frbc.frbc_operation_mode import FRBCOperationMode +from s2python.frbc.frbc_usage_forecast_element import FRBCUsageForecastElement +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( + S2FrbcDevicePlanner, ) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from flexmeasures_s2.profile_steering.common.profile_metadata import \ + ProfileMetadata +from s2python.frbc import FRBCSystemDescription +from s2python.frbc import FRBCUsageForecast +from s2python.frbc import FRBCFillLevelTargetProfile +from s2python.frbc import FRBCLeakageBehaviour +from s2python.frbc import FRBCOperationModeElement +from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, \ + FRBCStorageDescription +from s2python.common import PowerRange +from s2python.common import NumberRange +from s2python.common import CommodityQuantity +from s2python.common import Transition +from s2python.common import Timer +from s2python.common import PowerValue +from s2python.common import Commodity +from joule_profile_example import get_JouleProfileTarget + + +def test_connexxion_ev_bus_baseline_byd_225(): + # Arrange + device_id = "01-01-70.225" + omloop_starts_at = datetime.fromtimestamp(3600) + cet = timezone(timedelta(hours=1)) + charge_power_soc_percentage_per_second_night = 0.0054012349 + charging_power_kw_night = 28 + + charge_power_soc_percentage_per_second_day = 0.01099537114 + charging_power_kw_day = 57 + + # Create system descriptions and forecasts + + start_of_recharge1 = omloop_starts_at.astimezone(cet) + recharge_duration1 = timedelta(hours=7, minutes=13) + soc_percentage_before_charging1 = 0 + final_fill_level_target1 = 100 + + # Create system description + recharge_system_description1 = create_recharge_system_description( + start_of_recharge=start_of_recharge1, + charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, + charging_power_kw=charging_power_kw_night, + soc_percentage_before_charging=soc_percentage_before_charging1, + ) + + # Create leakage behaviour + recharge_leakage1 = create_recharge_leakage_behaviour( + start_of_recharge1) + + # Create usage forecast + recharge_usage_forecast1 = create_recharge_usage_forecast( + start_of_recharge1, recharge_duration1 + ) + + # Create fill level target profile + recharge_fill_level_target1 = create_recharge_fill_level_target_profile( + start_of_recharge1, + recharge_duration1, + final_fill_level_target1, + soc_percentage_before_charging1, + ) + + # Create system description for driving + start_of_drive1 = start_of_recharge1 + recharge_duration1 + drive_duration1 = timedelta(hours=4, minutes=36) + drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 + soc_percentage_before_driving1 = 100 -# Define the test object -test_device_state = S2FrbcDeviceState( - device_id=str(uuid.uuid4()), - device_name="test_device", - connection_id=str(uuid.uuid4()), - priority_class=1, - timestamp=datetime.datetime.now(tz=datetime.timezone.utc), - energy_in_current_timestep=CommodityQuantity.ELECTRIC_POWER_L1, - is_online=True, - computational_parameters=S2FrbcDeviceState.ComputationalParameters( - nr_of_buckets=10, - stratification_layers=10, - ), - power_forecast=PowerForecast( - start_time=datetime.datetime.now(tz=datetime.timezone.utc), + drive_system_description1 = create_driving_system_description( + start_of_drive1, soc_percentage_before_driving1 + ) + drive_usage_forecast1 = create_driving_usage_forecast( + start_of_drive1, drive_duration1, drive_consume_soc_per_second1 + ) + + start_of_recharge2 = start_of_drive1 + drive_duration1 + recharge_duration2 = timedelta(hours=1, minutes=1) + soc_percentage_before_charging2 = 37.7463951 + final_fill_level_target2 = 94.4825134 + + recharge_system_description2 = create_recharge_system_description( + start_of_recharge2, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging2, + ) + recharge_leakage2 = create_recharge_leakage_behaviour( + start_of_recharge2) + recharge_usage_forecast2 = create_recharge_usage_forecast( + start_of_recharge2, recharge_duration2 + ) + recharge_fill_level_target2 = create_recharge_fill_level_target_profile( + start_of_recharge2, + recharge_duration2, + final_fill_level_target2, + soc_percentage_before_charging2, + ) + + device_state = S2FrbcDeviceState( + device_id="bat1", + device_name="bat1", + connection_id="cid1", + priority_class=1, + timestamp=omloop_starts_at, + energy_in_current_timestep=PowerValue( + value=0, commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1 + ), + is_online=True, + power_forecast=None, + system_descriptions=[ + recharge_system_description1, + drive_system_description1, + recharge_system_description2, + ], + leakage_behaviours=[recharge_leakage1, recharge_leakage2], + usage_forecasts=[ + recharge_usage_forecast1, + drive_usage_forecast1, + recharge_usage_forecast2, + ], + fill_level_target_profiles=[ + recharge_fill_level_target1, + recharge_fill_level_target2, + ], + computational_parameters=S2FrbcDeviceState.ComputationalParameters( + 1000, 20 + ), + ) + target_metadata = ProfileMetadata( + profile_start=omloop_starts_at, timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288 + ) + + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + + planner = S2FrbcDevicePlanner(device_state, target_metadata, + plan_due_by_date) + planning = planner.create_initial_planning(plan_due_by_date) + + assert planning == get_JouleProfileTarget() + + +@staticmethod +def create_recharge_system_description( + start_of_recharge, + charge_power_soc_percentage_per_second, + charging_power_kw, + soc_percentage_before_charging, +) -> FRBCSystemDescription: + # Create and return a mock system description for recharging + on_operation_element = FRBCOperationModeElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_rate=NumberRange( + start_of_range=charge_power_soc_percentage_per_second, + end_of_range=charge_power_soc_percentage_per_second, + ), + power_ranges=[ + PowerRange( + start_of_range=charging_power_kw * 1000, + end_of_range=charging_power_kw * 1000, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + id_on_operation_mode = str(uuid.uuid4()) + on_operation_mode = FRBCOperationMode( + id=id_on_operation_mode, + diagnostic_label="on", + elements=[on_operation_element], + abnormal_condition_only=False, + ) + off_operation_element = FRBCOperationModeElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_rate=NumberRange(start_of_range=0, end_of_range=0), + power_ranges=[ + PowerRange( + start_of_range=0, + end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + id_off_operation_mode = str(uuid.uuid4()) + off_operation_mode = FRBCOperationMode( + id=id_off_operation_mode, + diagnostic_label="off", + elements=[off_operation_element], + abnormal_condition_only=False, + ) + + id_on_to_off_timer = str(uuid.uuid4()) + on_to_off_timer = Timer( + id=id_on_to_off_timer, + diagnostic_label="on.to.off.timer", + duration=int(timedelta(minutes=30).total_seconds()), + ) + id_off_to_on_timer = str(uuid.uuid4()) + off_to_on_timer = Timer( + id=id_off_to_on_timer, + diagnostic_label="off.to.on.timer", + duration=int(timedelta(minutes=30).total_seconds()), + ) + + transition_from_on_to_off = Transition( + id=str(uuid.uuid4()), + **{ + "from": id_on_operation_mode + }, + to=id_off_operation_mode, + start_timers=[id_off_to_on_timer], + blocking_timers=[id_on_to_off_timer], + transition_duration=None, + abnormal_condition_only=False + + ) + transition_from_off_to_on = Transition( + id=str(uuid.uuid4()), + **{ + "from": id_off_operation_mode + }, + to=id_on_operation_mode, + start_timers=[id_on_to_off_timer], + blocking_timers=[id_off_to_on_timer], + transition_duration=None, + abnormal_condition_only=False + ) + + charge_actuator_description = FRBCActuatorDescription( + id=str(uuid.uuid4()), + diagnostic_label="charge", + operation_modes=[on_operation_mode, off_operation_mode], + transitions=[transition_from_on_to_off, transition_from_off_to_on], + timers=[on_to_off_timer, off_to_on_timer], + supported_commodities=[Commodity.ELECTRICITY], + ) + + frbc_storage_description = FRBCStorageDescription( + diagnostic_label="battery", + fill_level_label="SoC %", + provides_leakage_behaviour=False, + provides_fill_level_target_profile=True, + provides_usage_forecast=False, + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + ) + + frbc_system_description = FRBCSystemDescription( + message_id=str(uuid.uuid4()), + valid_from=start_of_recharge, + actuators=[charge_actuator_description], + storage=frbc_storage_description, + ) + + return frbc_system_description + + +def create_recharge_leakage_behaviour( start_of_recharge): + return FRBCLeakageBehaviour( message_id=str(uuid.uuid4()), + valid_from=start_of_recharge, elements=[ - PowerForecastElement( - duration=int(datetime.timedelta(hours=1).total_seconds()), - power_values=[ - PowerForecastValue( - value_expected=0.0, - commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, - ) - ], + FRBCLeakageBehaviourElement( + fill_level_range=NumberRange(start_of_range=0, + end_of_range=100), + leakage_rate=0, ) ], - ), - leakage_behaviours=[], - usage_forecasts=[], - fill_level_target_profiles=[], - system_descriptions=[ - FRBCSystemDescription( - message_id=str(uuid.uuid4()), - valid_from=datetime.datetime.now(tz=datetime.timezone.utc), - actuators=[ - FRBCActuatorDescription( - id=str(uuid.uuid4()), # Ensure id is a string - diagnostic_label="charge", - supported_commodities=[Commodity.ELECTRICITY], - operation_modes=[ - FRBCOperationMode( - id="charge.on", - diagnostic_label="charge.on", - elements=[ - FRBCOperationModeElement( - fill_level_range=NumberRange( - start_of_range=0.0, - end_of_range=100.0, - ), - fill_rate=NumberRange( - start_of_range=0.0054012349, - end_of_range=0.0054012349, - ), - power_ranges=[ - PowerRange( - start_of_range=28000.0, - end_of_range=28000.0, - commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, - ) - ], - ) - ], - abnormal_condition_only=False, - ), - FRBCOperationMode( - id="charge.off", - diagnostic_label="charge.off", - elements=[ - FRBCOperationModeElement( - fill_level_range=NumberRange( - start_of_range=0, - end_of_range=100, - ), - fill_rate=NumberRange( - start_of_range=0, - end_of_range=0, - ), - power_ranges=[ - PowerRange( - start_of_range=0, - end_of_range=0, - commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, - ) - ], - running_costs=None, - ) - ], - abnormal_condition_only=False, - ), - ], - transitions=[ - Transition( - id="off.to.on", - **{ - "from": "charge.off" - }, # Use a workaround to set 'from' since it's a keyword in Python, - to="charge.on", - start_timers=["on.to.off.timer"], - blocking_timers=["off.to.on.timer"], - abnormal_condition_only=False, - ), - Transition( - id="on.to.off", - **{ - "from": "charge.on" - }, # Use a workaround to set 'from' since it's a keyword in Python, - to="charge.off", - start_timers=["off.to.on.timer"], - blocking_timers=["on.to.off.timer"], - abnormal_condition_only=False, - ), - ], - timers=[ - Timer( - id="on.to.off.timer", - diagnostic_label="on.to.off.timer", - duration=30, - ), - Timer( - id="off.to.on.timer", - diagnostic_label="off.to.on.timer", - duration=30, - ), - ], - ) - ], - storage=FRBCStorageDescription( - diagnostic_label="battery", - fill_level_label="SoC %", - provides_leakage_behaviour=False, - provides_fill_level_target_profile=True, - provides_usage_forecast=False, - fill_level_range=NumberRange(start_of_range=0, end_of_range=100), - ), - ) - ], -) + ) + + +def create_recharge_usage_forecast(start_of_recharge, + recharge_duration): + no_usage = FRBCUsageForecastElement( + duration=int(recharge_duration.total_seconds()), + usage_rate_expected=0 + ) + return FRBCUsageForecast( + message_id=str(uuid.uuid4()), start_time=start_of_recharge, + elements=[no_usage] + ) + + +@staticmethod +def create_recharge_fill_level_target_profile( + start_of_recharge, + recharge_duration, + final_fill_level_target, + soc_percentage_before_charging, +): + during_charge = FRBCFillLevelTargetProfileElement( + duration=max(recharge_duration.total_seconds() - 10, 0), + fill_level_range=NumberRange( + start_of_range=soc_percentage_before_charging, + end_of_range=100), + ) + end_of_charge = FRBCFillLevelTargetProfileElement( + duration=min(recharge_duration.total_seconds(), 10), + fill_level_range=NumberRange(start_of_range=final_fill_level_target, + end_of_range=100), + ) + return FRBCFillLevelTargetProfile( + message_id=str(uuid.uuid4()), + start_time=start_of_recharge, + elements=[during_charge, end_of_charge] + ) + + +@staticmethod +def create_driving_system_description( + start_of_drive, soc_percentage_before_driving +): + off_operation_element = FRBCOperationModeElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_rate=NumberRange(start_of_range=0, end_of_range=0), + power_ranges=[ + PowerRange(start_of_range=0, end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1)], + ) + id_off_operation_mode = str(uuid.uuid4()) + off_operation_mode = FRBCOperationMode( + id=id_off_operation_mode, + diagnostic_label="off", + elements=[off_operation_element], + abnormal_condition_only=False, + ) + off_actuator = FRBCActuatorDescription( + id=str(uuid.uuid4()), + diagnostic_label="off.to.on.timer", + operation_modes=[off_operation_mode], + transitions=[], + timers=[], + supported_commodities=[Commodity.ELECTRICITY], + ) + storage_status = FRBCStorageStatus(message_id=str(uuid.uuid4()), + present_fill_level=soc_percentage_before_driving) + storage_description = FRBCStorageDescription( + diagnostic_label="battery", + fill_level_label="SoC %", + provides_leakage_behaviour=False, + provides_fill_level_target_profile=True, + provides_usage_forecast=False, + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + ) + return FRBCSystemDescription( + message_id=str(uuid.uuid4()), + valid_from=start_of_drive, + actuators=[off_actuator], + storage=storage_description, + ) + + +@staticmethod +def create_driving_usage_forecast( + start_of_driving, next_drive_duration, soc_usage_per_second +): + no_usage = FRBCUsageForecastElement( + duration=int(next_drive_duration.total_seconds()), + usage_rate_expected=(-1 * soc_usage_per_second), + ) + return FRBCUsageForecast(message_id=str(uuid.uuid4()), + start_time=start_of_driving, + elements=[no_usage]) diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py b/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py deleted file mode 100644 index 5fdef3e..0000000 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_planning.py +++ /dev/null @@ -1,43 +0,0 @@ -import pytest -from datetime import datetime, timezone, timedelta -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( - S2FrbcDevicePlanner, -) -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( - S2FrbcDeviceStateWrapper, -) -from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from test_frbc_device import test_device_state -from joule_profile_example import JouleProfileTarget - - -def test_create_initial_planning(): - # Initialize the necessary objects for the test - device_state = S2FrbcDeviceStateWrapper(test_device_state) - epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) - profile_metadata = ProfileMetadata( - profile_start=epoch_time, - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, - ) - plan_due_by_date = profile_metadata.get_profile_start() + timedelta(seconds=10) - - # Initialize the planner - planner = S2FrbcDevicePlanner(test_device_state, profile_metadata, plan_due_by_date) - - # Call the method to test - joule_profile = planner.create_initial_planning(plan_due_by_date) - - # Define the expected JouleProfile - expected_joule_profile = JouleProfile( - profile_start=profile_metadata.get_profile_start(), - timestep_duration=profile_metadata.get_timestep_duration(), - elements=JouleProfileTarget, - ) - - print(joule_profile) - print(expected_joule_profile) - print(joule_profile == expected_joule_profile) - # Assert that the output matches the expected output - assert joule_profile == expected_joule_profile diff --git a/flexmeasures_s2/scheduler/schemas.py b/flexmeasures_s2/scheduler/schemas.py index bed6480..03f98f2 100644 --- a/flexmeasures_s2/scheduler/schemas.py +++ b/flexmeasures_s2/scheduler/schemas.py @@ -3,8 +3,7 @@ from marshmallow import Schema, fields -class S2FlexModelSchema(Schema): - ... +class S2FlexModelSchema(Schema): ... class TNOTargetProfile(Schema): From b59e50ef07d342948aa94c89a71bcab6f9669654 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Feb 2025 14:26:39 +0100 Subject: [PATCH 15/33] Need to discuss the change to the s2-python FRBC library --- .../frbc/fill_level_target_util.py | 23 ++++++-- .../device_planner/frbc/frbc_state.py | 5 +- .../frbc/operation_mode_profile_tree.py | 41 +++++++------ .../frbc/s2_frbc_device_planner.py | 57 +++++++++++-------- .../frbc/usage_forecast_util.py | 22 +++++-- 5 files changed, 93 insertions(+), 55 deletions(-) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py index 3e3d26c..fcaf840 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py @@ -22,22 +22,35 @@ def split(self, date): def date_in_element(self, date): return self.start <= date <= self.end + class FillLevelTargetUtil: @staticmethod def from_fill_level_target_profile(fill_level_target_profile): elements = [] - start = fill_level_target_profile.get_start_time() - for element in fill_level_target_profile.get_elements(): - end = start + timedelta(seconds=element.get_duration()) + start = fill_level_target_profile.start_time + for element in fill_level_target_profile.elements: + end = start + timedelta(seconds=element.duration.__root__) elements.append( FillLevelTargetElement( start, end, - element.get_fill_level_range().get_start_of_range(), - element.get_fill_level_range().get_end_of_range(), + element.fill_level_range.start_of_range, + element.fill_level_range.end_of_range, ) ) start = end + timedelta(milliseconds=1) return elements + + @staticmethod + def get_elements_in_range(target_profile, start, end): + elements_in_range = [] + start = start.replace(tzinfo=None) + end = end.replace(tzinfo=None) + for element in target_profile: + element_start = element.start.replace(tzinfo=None) + element_end = element.end.replace(tzinfo=None) + if element_start <= end and element_end >= start: + elements_in_range.append(element) + return elements_in_range diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 7cdffc4..cdeca12 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -31,8 +31,11 @@ def __init__( self.timestep = timestep self.previous_state = previous_state self.system_description = timestep.get_system_description() + #TODO: The Java code for s2 contains a status field for storage. + # This is not present in the S2FRBCSystemDescription. + # We should add it to the S2FRBCSystemDescription. self.fill_level = ( - self.system_description.get_storage().get_status().get_present_fill_level() + self.system_description.storage.status.present_fill_level ) self.bucket = 0 self.timestep_energy = 0.0 diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index 1d50247..f773edb 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -60,17 +60,17 @@ def generate_timesteps(self) -> None: current_system_description = self.get_latest_before( time_step_start_dt, self.device_state.get_system_descriptions(), - lambda sd: sd.get_valid_from(), + lambda sd: sd.valid_from, ) current_leakage_behaviour = self.get_latest_before( time_step_start_dt, self.device_state.get_leakage_behaviours(), - lambda lb: lb.get_valid_from(), + lambda lb: lb.valid_from, ) current_fill_level = self.get_latest_before( time_step_start_dt, self.device_state.get_fill_level_target_profiles(), - lambda fl: fl.get_start_time(), + lambda fl: fl.start_time, ) current_fill_level_target = None if current_fill_level: @@ -85,7 +85,7 @@ def generate_timesteps(self) -> None: current_usage_forecast = self.get_latest_before( time_step_start_dt, self.device_state.get_usage_forecasts(), - lambda uf: uf.get_start_time(), + lambda uf: uf.start_time, ) current_usage_forecast_profile = None if current_usage_forecast: @@ -109,18 +109,18 @@ def generate_timesteps(self) -> None: time_step_start = time_step_end @staticmethod - def get_latest_before( - before: datetime, select_from: List[Any], get_date_time: Any - ) -> Optional[Any]: + def get_latest_before(before, select_from, get_date_time): latest_before = None latest_before_date_time = None if select_from: for current in select_from: if current: - current_date_time = get_date_time(current) + current_date_time = get_date_time(current).replace( + tzinfo=None) + before = before.replace(tzinfo=None) if current_date_time <= before and ( - latest_before is None - or current_date_time > latest_before_date_time + latest_before is None + or current_date_time > latest_before_date_time ): latest_before = current latest_before_date_time = current_date_time @@ -136,17 +136,17 @@ def get_fill_level_target_for_timestep( return None time_step_end -= timedelta(milliseconds=1) lower, upper = None, None - for e in fill_level_target_profile.get_elements_in_range( - time_step_start, time_step_end + for e in FillLevelTargetUtil.get_elements_in_range( + fill_level_target_profile, time_step_start, time_step_end ): - if e.get_lower_limit() is not None and ( - lower is None or e.get_lower_limit() > lower + if e.lower_limit is not None and ( + lower is None or e.lower_limit > lower ): - lower = e.get_lower_limit() - if e.get_upper_limit() is not None and ( - upper is None or e.get_upper_limit() < upper + lower = e.lower_limit + if e.upper_limit is not None and ( + upper is None or e.upper_limit < upper ): - upper = e.get_upper_limit() + upper = e.upper_limit if lower is None and upper is None: return None return NumberRangeWrapper(lower, upper) @@ -161,9 +161,8 @@ def get_usage_forecast_for_timestep( return 0 time_step_end -= timedelta(milliseconds=1) usage = 0 - sub_profile = usage_forecast.sub_profile(time_step_start, time_step_end) - for element in sub_profile.get_elements(): - usage += element.get_usage() + usage = UsageForecastUtil.sub_profile(usage_forecast, time_step_start, time_step_end) + return usage def find_best_plan( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index cca6f8d..7d451cf 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -1,13 +1,18 @@ from datetime import datetime from typing import Optional + +from sqlalchemy.sql.base import elements + from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.proposal import Proposal from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import \ + S2FrbcPlan from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( S2FrbcInstructionProfile, ) -from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.common.profile_metadata import \ + ProfileMetadata from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) @@ -28,10 +33,10 @@ # make sure this is a DevicePlanner class S2FrbcDevicePlanner(DevicePlanner): def __init__( - self, - s2_frbc_state: S2FrbcDeviceState, - profile_metadata: ProfileMetadata, - plan_due_by_date: datetime, + self, + s2_frbc_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, ): self.s2_frbc_state = s2_frbc_state self.profile_metadata = profile_metadata @@ -43,7 +48,7 @@ def __init__( self.null_profile = JouleProfile( profile_metadata.get_profile_start(), profile_metadata.get_timestep_duration(), - None, + elements=[None] * profile_metadata.get_nr_of_timesteps(), ) if self.is_storage_available(self.s2_frbc_state): self.state_tree = OperationModeProfileTree( @@ -57,29 +62,32 @@ def __init__( def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: latest_before_first_ptu = OperationModeProfileTree.get_latest_before( - self.profile_metadata.get_profile_start(), + self.profile_metadata.get_profile_start().replace(tzinfo=None), storage_state.get_system_descriptions(), - lambda sd: sd.valid_from, + lambda sd: sd.valid_from.replace(tzinfo=None), ) if not storage_state.get_system_descriptions(): return False if latest_before_first_ptu is None: active_and_upcoming_system_descriptions_has_active_storage = any( - sd.valid_from <= self.profile_metadata.get_profile_end() - and sd.valid_from >= self.profile_metadata.get_profile_start() - and sd.get_storage().get_status() is not None + # TODO: ask if TypeError: can't compare offset-naive and offset-aware datetimes could be solved differently + self.profile_metadata.get_profile_end().replace( + tzinfo=None) >= sd.valid_from.replace( + tzinfo=None) >= self.profile_metadata.get_profile_start().replace( + tzinfo=None) for sd in storage_state.get_system_descriptions() ) else: active_and_upcoming_system_descriptions_has_active_storage = any( - sd.valid_from <= self.profile_metadata.get_profile_end() - and sd.valid_from >= latest_before_first_ptu.valid_from - and sd.get_storage().get_status() is not None + self.profile_metadata.get_profile_end().replace( + tzinfo=None) >= sd.valid_from.replace( + tzinfo=None) >= latest_before_first_ptu.valid_from.replace( + tzinfo=None) for sd in storage_state.get_system_descriptions() ) return ( - storage_state._is_online() - and active_and_upcoming_system_descriptions_has_active_storage + storage_state._is_online() + and active_and_upcoming_system_descriptions_has_active_storage ) def get_device_id(self) -> str: @@ -92,11 +100,11 @@ def get_device_name(self) -> str: return self.s2_frbc_state.get_device_name() def create_improved_planning( - self, - diff_to_global_target: TargetProfile, - diff_to_max: JouleProfile, - diff_to_min: JouleProfile, - plan_due_by_date: datetime, + self, + diff_to_global_target: TargetProfile, + diff_to_max: JouleProfile, + diff_to_min: JouleProfile, + plan_due_by_date: datetime, ) -> Proposal: if self.accepted_plan is None: raise ValueError("No accepted plan found") @@ -129,7 +137,8 @@ def create_improved_planning( ) return proposal - def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + def create_initial_planning(self, + plan_due_by_date: datetime) -> JouleProfile: if self.is_storage_available(self.s2_frbc_state): self.latest_plan = self.state_tree.find_best_plan( TargetProfile.null_profile(self.profile_metadata), @@ -187,7 +196,7 @@ def get_device_plan(self) -> Optional[DevicePlan]: @staticmethod def convert_plan_to_instructions( - profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan + profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan ) -> S2FrbcInstructionProfile: elements = [] actuator_configurations_per_timestep = device_plan.get_operation_mode_id() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py index c85886f..efa69ac 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -30,11 +30,25 @@ class UsageForecastUtil: @staticmethod def from_storage_usage_profile(usage_forecast): elements = [] - start = usage_forecast.get_start_time() - for element in usage_forecast.get_elements(): - end = start + timedelta(seconds=element.get_duration()) + start = usage_forecast.start_time + for element in usage_forecast.elements: + end = start + timedelta(seconds=element.duration.__root__) elements.append( - UsageForecastElement(start, end, element.get_usage_rate_expected()) + UsageForecastElement(start, end, element.usage_rate_expected) ) start = end + timedelta(milliseconds=1) return elements + + def sub_profile(usage_forecast, timeStepStart, timeStepEnd): + if usage_forecast is None: + return 0 + timeStepEnd -= timedelta(milliseconds=1) + usage = 0 + timeStepStart = timeStepStart.replace(tzinfo=None) + timeStepEnd = timeStepEnd.replace(tzinfo=None) + for element in usage_forecast: + element_start = element.start.replace(tzinfo=None) + element_end = element.end.replace(tzinfo=None) + if element_start <= timeStepEnd and element_end >= timeStepStart: + usage += element.get_usage() + return usage From 5f17892b9216bfe35891bae8ce20095bbb974961 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Feb 2025 14:28:12 +0100 Subject: [PATCH 16/33] Need to discuss FRBC change in s2-python Signed-off-by: Vlad Iftime --- .idea/.gitignore | 8 + .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/flexmeasures-s2.iml | 17 + .../inspectionProfiles/profiles_settings.xml | 6 + .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + flexmeasures_s2/profile_steering/__init__.py | 0 .../device_planner/device_planner_abstract.py | 82 +++++ .../profile_steering/tests/java_classes.txt | 342 ++++++++++++++++++ 10 files changed, 481 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/flexmeasures-s2.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 flexmeasures_s2/profile_steering/__init__.py create mode 100644 flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py create mode 100644 flexmeasures_s2/profile_steering/tests/java_classes.txt diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/flexmeasures-s2.iml b/.idea/flexmeasures-s2.iml new file mode 100644 index 0000000..e8fd289 --- /dev/null +++ b/.idea/flexmeasures-s2.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f8f2fd7 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..b88603f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/__init__.py b/flexmeasures_s2/profile_steering/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py b/flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py new file mode 100644 index 0000000..a5efb49 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py @@ -0,0 +1,82 @@ +from datetime import datetime +from typing import Optional +from abc import ABC, abstractmethod +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.common.device_planner.device_plan import ( + DevicePlan, +) + + +class DevicePlanner(ABC): + @abstractmethod + def get_device_id(self) -> str: + """Get the device ID.""" + pass + + @abstractmethod + def get_device_name(self) -> str: + """Get the device name.""" + pass + + @abstractmethod + def get_connection_id(self) -> str: + """Get the connection ID.""" + pass + + @abstractmethod + def create_improved_planning( + self, + cluster_diff_profile: TargetProfile, + diff_to_max_profile: JouleProfile, + diff_to_min_profile: JouleProfile, + plan_due_by_date: datetime, + ) -> "Proposal": + """Create an improved planning proposal. + + Args: + cluster_diff_profile: The difference profile for the cluster + diff_to_max_profile: The difference to the maximum profile + diff_to_min_profile: The difference to the minimum profile + plan_due_by_date: The date by which the plan must be ready + + Returns: + A Proposal object representing the improved plan + """ + pass + + @abstractmethod + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + """Create an initial planning profile. + + Args: + plan_due_by_date: The date by which the plan must be ready + + Returns: + A JouleProfile representing the initial plan + """ + pass + + @abstractmethod + def accept_proposal(self, accepted_proposal: "Proposal"): + """Accept a proposal and update the device's planning. + + Args: + accepted_proposal: The proposal to accept + """ + pass + + @abstractmethod + def get_current_profile(self) -> JouleProfile: + """Get the current profile of the device.""" + pass + + @abstractmethod + def get_device_plan(self) -> Optional[DevicePlan]: + """Get the device plan.""" + pass + + @abstractmethod + def get_priority_class(self) -> int: + """Get the priority class of the device.""" + pass diff --git a/flexmeasures_s2/profile_steering/tests/java_classes.txt b/flexmeasures_s2/profile_steering/tests/java_classes.txt new file mode 100644 index 0000000..36d1995 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/java_classes.txt @@ -0,0 +1,342 @@ + +[class FRBCFillLevelTargetProfile { + startTime: 1970-01-01T02:00+01:00 + elements: [class FRBCFillLevelTargetProfileElement { + duration: 25970 + fillLevelRange: class CommonNumberRange { + startOfRange: 0.0 + endOfRange: 100 + } + }, class FRBCFillLevelTargetProfileElement { + duration: 10 + fillLevelRange: class CommonNumberRange { + startOfRange: 100.0 + endOfRange: 100 + } + }] +}, class FRBCFillLevelTargetProfile { + startTime: 1970-01-01T13:49+01:00 + elements: [class FRBCFillLevelTargetProfileElement { + duration: 5330 + fillLevelRange: class CommonNumberRange { + startOfRange: 37.7463951 + endOfRange: 100 + } + }, class FRBCFillLevelTargetProfileElement { + duration: 10 + fillLevelRange: class CommonNumberRange { + startOfRange: 94.4825134 + endOfRange: 100 + } + }] +}] +true +[class FRBCLeakageBehaviour { + validFrom: 1970-01-01T02:00+01:00 + elements: [class FRBCLeakageBehaviourElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + leakageRate: 0 + }] +}, class FRBCLeakageBehaviour { + validFrom: 1970-01-01T13:49+01:00 + elements: [class FRBCLeakageBehaviourElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + leakageRate: 0 + }] +}] +null +1 +[class FRBCSystemDescription { + validFrom: 1970-01-01T02:00+01:00 + actuators: [class FRBCActuatorDescription { + id: 53638cd8-9349-4fea-b4b0-bb2d305e35b5 + diagnosticLabel: charge + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: charge.on + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: charge.on + diagnosticLabel: charge.on + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0.0054012349 + endOfRange: 0.0054012349 + } + powerRanges: [class CommonPowerRange { + startOfRange: 28000.0 + endOfRange: 28000.0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }, class FRBCOperationMode { + id: charge.off + diagnosticLabel: charge.off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [class CommonTransition { + id: off.to.on + from: charge.off + to: charge.on + startTimers: [on.to.off.timer] + blockingTimers: [off.to.on.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }, class CommonTransition { + id: on.to.off + from: charge.on + to: charge.off + startTimers: [off.to.on.timer] + blockingTimers: [on.to.off.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }] + timers: [class CommonTimer { + id: on.to.off.timer + diagnosticLabel: on.to.off.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }, class CommonTimer { + id: off.to.on.timer + diagnosticLabel: off.to.on.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: true + providesUsageForecast: false + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 0.0 + } + leakageBehaviour: null + } +}, class FRBCSystemDescription { + validFrom: 1970-01-01T09:13+01:00 + actuators: [class FRBCActuatorDescription { + id: 46d3f329-34df-4826-b65f-4d9433da5392 + diagnosticLabel: off + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: off + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: off + diagnosticLabel: off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [] + timers: [] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: false + providesUsageForecast: true + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 100.0 + } + leakageBehaviour: null + } +}, class FRBCSystemDescription { + validFrom: 1970-01-01T13:49+01:00 + actuators: [class FRBCActuatorDescription { + id: 63d325e6-0962-42b0-9968-3ae6c2a83cbd + diagnosticLabel: charge + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: charge.on + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: charge.on + diagnosticLabel: charge.on + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0.01099537114 + endOfRange: 0.01099537114 + } + powerRanges: [class CommonPowerRange { + startOfRange: 57000.0 + endOfRange: 57000.0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }, class FRBCOperationMode { + id: charge.off + diagnosticLabel: charge.off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [class CommonTransition { + id: off.to.on + from: charge.off + to: charge.on + startTimers: [on.to.off.timer] + blockingTimers: [off.to.on.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }, class CommonTransition { + id: on.to.off + from: charge.on + to: charge.off + startTimers: [off.to.on.timer] + blockingTimers: [on.to.off.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }] + timers: [class CommonTimer { + id: on.to.off.timer + diagnosticLabel: on.to.off.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }, class CommonTimer { + id: off.to.on.timer + diagnosticLabel: off.to.on.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: true + providesUsageForecast: false + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 37.7463951 + } + leakageBehaviour: null + } +}] +1970-01-01T01:00:00Z +[class FRBCUsageForecast { + startTime: 1970-01-01T02:00+01:00 + elements: [class FRBCUsageForecastElement { + duration: 25980 + usageRateUpperLimit: 0 + usageRateUpper95PPR: 0 + usageRateUpper68PPR: 0 + usageRateExpected: 0 + usageRateLower68PPR: 0 + usageRateLower95PPR: 0 + usageRateLowerLimit: 0 + }] +}, class FRBCUsageForecast { + startTime: 1970-01-01T09:13+01:00 + elements: [class FRBCUsageForecastElement { + duration: 16560 + usageRateUpperLimit: null + usageRateUpper95PPR: null + usageRateUpper68PPR: null + usageRateExpected: -0.0037592756582125603 + usageRateLower68PPR: null + usageRateLower95PPR: null + usageRateLowerLimit: null + }] +}, class FRBCUsageForecast { + startTime: 1970-01-01T13:49+01:00 + elements: [class FRBCUsageForecastElement { + duration: 5340 + usageRateUpperLimit: 0 + usageRateUpper95PPR: 0 + usageRateUpper68PPR: 0 + usageRateExpected: 0 + usageRateLower68PPR: 0 + usageRateLower95PPR: 0 + usageRateLowerLimit: 0 + }] +}] From 7f5c99cb81070687827e5a2a5ea4e719cffcd4f0 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Feb 2025 22:05:33 +0100 Subject: [PATCH 17/33] Need to discuss FRBC change in s2-python Signed-off-by: Vlad Iftime --- .../device_planner/frbc/frbc_state.py | 176 +++++++++--------- .../frbc/operation_mode_profile_tree.py | 2 +- .../tests/test_frbc_device.py | 22 ++- 3 files changed, 112 insertions(+), 88 deletions(-) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index cdeca12..1a441fb 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -3,12 +3,15 @@ FRBCSystemDescription, ) from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -import flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper +from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus +import \ + flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) -import flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep +import \ + flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( SelectionResult, SelectionReason, @@ -21,22 +24,24 @@ class FrbcState: tariff_epsilon = 0.5 def __init__( - self, - device_state, - timestep, - previous_state: Optional["FrbcState"] = None, - actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, + self, + device_state, + timestep, + present_fill_level, + previous_state: Optional["FrbcState"] = None, + actuator_configurations: Optional[ + Dict[str, S2ActuatorConfiguration]] = None, + actuator_statuses: Optional[ + Dict[str, FRBCActuatorStatus]] = None, ): self.device_state = device_state self.timestep = timestep self.previous_state = previous_state self.system_description = timestep.get_system_description() - #TODO: The Java code for s2 contains a status field for storage. + # TODO: The Java code for s2 contains a status field for storage. # This is not present in the S2FRBCSystemDescription. # We should add it to the S2FRBCSystemDescription. - self.fill_level = ( - self.system_description.storage.status.present_fill_level - ) + self.fill_level = present_fill_level self.bucket = 0 self.timestep_energy = 0.0 self.sum_squared_distance = 0.0 @@ -50,34 +55,36 @@ def __init__( self.system_description ) ) - + self.actuator_statuses = actuator_statuses or {} + # TODO: Same problem as the Storage message. There is no way to store the status if previous_state is None: - for actuator in self.system_description.get_actuators(): - actuator_status = actuator.get_status() + for actuator_status in self.actuator_statuses.values(): actuator_config = S2ActuatorConfiguration( - actuator_status.get_active_operation_mode_id(), - actuator_status.get_operation_mode_factor(), + actuator_status.active_operation_mode_id, + actuator_status.operation_mode_factor, ) - self.actuator_configurations[actuator.get_id()] = actuator_config + self.actuator_configurations[str(actuator_status.actuator_id)] = actuator_config else: - self.calculate_state_values(previous_state, self.actuator_configurations) + self.calculate_state_values(previous_state, + self.actuator_configurations) @staticmethod def get_initial_timer_elapse_map_for_system_description( - system_description: FRBCSystemDescription, + system_description: FRBCSystemDescription, ) -> Dict[str, datetime]: timer_elapse_map = {} - for actuator in system_description.get_actuators(): - for timer in actuator.get_timers(): + for actuator in system_description.actuators: + for timer in actuator.timers: timer_elapse_map[ - FrbcState.timer_key(actuator.get_id(), timer.get_id()) - ] = timer.get_finished_at() + FrbcState.timer_key(str(actuator.id), str(timer.id)) + ] = datetime.min # arbitrary day in the past + # TODO: Add the finished_at time to the timer class? return timer_elapse_map def calculate_state_values( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): self.timestep_energy = 0.0 self.fill_level = previous_state.get_fill_level() @@ -89,26 +96,26 @@ def calculate_state_values( actuator_configuration.get_operation_mode_id(), ) self.timestep_energy += ( - self.device_state.get_operation_mode_power( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds + self.device_state.get_operation_mode_power( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds ) self.fill_level += ( - self.device_state.get_operation_mode_fill_rate( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds ) self.fill_level -= ( - s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( - self.timestep, self.fill_level - ) - * seconds + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) + * seconds ) self.fill_level += self.timestep.get_forecasted_usage() self.bucket = ( @@ -121,13 +128,13 @@ def calculate_state_values( self.timestep.add_state(self) def update_timers( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): if ( - previous_state.system_description.get_valid_from() - == self.system_description.get_valid_from() + previous_state.system_description.get_valid_from() + == self.system_description.get_valid_from() ): self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() for actuator_id, actuator_configuration in actuator_configurations.items(): @@ -146,7 +153,7 @@ def update_timers( ) if transition is None: continue - for timer_id in transition.get_start_timers(): + for timer_id in transition.start_timers: duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( self.timestep, actuator_id, timer_id ) @@ -165,8 +172,8 @@ def calculate_scores(self, previous_state: "FrbcState"): target = self.timestep.get_target() if isinstance(target, TargetProfile.JouleElement): self.sum_squared_distance = ( - previous_state.get_sum_squared_distance() - + (target.get_joules() - self.timestep_energy) ** 2 + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 ) self.sum_energy_cost = previous_state.get_sum_energy_cost() @@ -177,25 +184,25 @@ def calculate_scores(self, previous_state: "FrbcState"): previous_state.get_sum_squared_constraint_violation() ) if ( - self.timestep.get_max_constraint() is not None - and self.timestep_energy > self.timestep.get_max_constraint() + self.timestep.get_max_constraint() is not None + and self.timestep_energy > self.timestep.get_max_constraint() ): squared_constraint_violation += ( - self.timestep_energy - self.timestep.get_max_constraint() - ) ** 2 + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 if ( - self.timestep.get_min_constraint() is not None - and self.timestep_energy < self.timestep.get_min_constraint() + self.timestep.get_min_constraint() is not None + and self.timestep_energy < self.timestep.get_min_constraint() ): squared_constraint_violation += ( - self.timestep.get_min_constraint() - self.timestep_energy - ) ** 2 + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 self.sum_squared_constraint_violation = ( - previous_state.get_sum_squared_constraint_violation() - + squared_constraint_violation + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy**2 + previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 ) @staticmethod @@ -211,17 +218,18 @@ def generate_next_timestep_states(self, target_timestep): @staticmethod def try_create_next_state( - previous_state: "FrbcState", - target_timestep, - actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], + previous_state: "FrbcState", + target_timestep, + actuator_configs_for_target_timestep: Dict[ + str, S2ActuatorConfiguration], ): if ( - previous_state.get_system_description().get_valid_from() - == target_timestep.get_system_description().get_valid_from() + previous_state.get_system_description().get_valid_from() + == target_timestep.get_system_description().get_valid_from() ): for ( - actuator_id, - actuator_configuration, + actuator_id, + actuator_configuration, ) in actuator_configs_for_target_timestep.items(): previous_operation_mode_id = ( previous_state.get_actuator_configurations()[ @@ -238,15 +246,15 @@ def try_create_next_state( ) if transition is None: return False - for timer_id in transition.get_blocking_timers(): + for timer_id in transition.blocking_timers: timer_is_finished_at = ( previous_state.get_timer_elapse_map().get( FrbcState.timer_key(actuator_id, timer_id) ) ) if ( - timer_is_finished_at - and target_timestep.get_start_date() < timer_is_finished_at + timer_is_finished_at + and target_timestep.get_start_date() < timer_is_finished_at ): return False FrbcState( @@ -259,29 +267,29 @@ def try_create_next_state( def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: if ( - abs( - self.sum_squared_constraint_violation - - other_state.get_sum_squared_constraint_violation() - ) - >= self.constraint_epsilon + abs( + self.sum_squared_constraint_violation + - other_state.get_sum_squared_constraint_violation() + ) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_constraint_violation - < other_state.get_sum_squared_constraint_violation(), + < other_state.get_sum_squared_constraint_violation(), reason=SelectionReason.CONGESTION_CONSTRAINT, ) elif ( - abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) - >= self.constraint_epsilon + abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_distance - < other_state.get_sum_squared_distance(), + < other_state.get_sum_squared_distance(), reason=SelectionReason.ENERGY_TARGET, ) elif ( - abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) - >= self.tariff_epsilon + abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) + >= self.tariff_epsilon ): return SelectionResult( result=self.sum_energy_cost < other_state.get_sum_energy_cost(), @@ -296,8 +304,8 @@ def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: def is_within_fill_level_range(self): fill_level_range = self.system_description.get_storage().get_fill_level_range() return ( - self.fill_level >= fill_level_range.get_start_of_range() - and self.fill_level <= fill_level_range.get_end_of_range() + self.fill_level >= fill_level_range.get_start_of_range() + and self.fill_level <= fill_level_range.get_end_of_range() ) def get_fill_level_distance(self): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index f773edb..713220f 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -181,7 +181,7 @@ def find_best_plan( ) first_timestep = self.timesteps[first_timestep_index] last_timestep = self.timesteps[-1] - state_zero = FrbcState(self.device_state, first_timestep) + state_zero = FrbcState(self.device_state, first_timestep, 0) state_zero.generate_next_timestep_states(first_timestep) for i in range(first_timestep_index, len(self.timesteps) - 1): current_timestep = self.timesteps[i] diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 87e7ac1..29e3a87 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -243,9 +243,17 @@ def create_recharge_system_description( transition_duration=None, abnormal_condition_only=False ) + charge_actuator_id = str(uuid.uuid4()) + + charge_actuator_status = FRBCActuatorStatus( + message_id=str(uuid.uuid4()), + actuator_id=charge_actuator_id, + active_operation_mode_id=id_on_operation_mode, + operation_mode_factor=0, + ) charge_actuator_description = FRBCActuatorDescription( - id=str(uuid.uuid4()), + id=charge_actuator_id, diagnostic_label="charge", operation_modes=[on_operation_mode, off_operation_mode], transitions=[transition_from_on_to_off, transition_from_off_to_on], @@ -341,9 +349,16 @@ def create_driving_system_description( elements=[off_operation_element], abnormal_condition_only=False, ) + off_actuator_id = str(uuid.uuid4()) + off_actuator_status = FRBCActuatorStatus( + message_id=str(uuid.uuid4()), + actuator_id=off_actuator_id, + active_operation_mode_id=id_off_operation_mode, + operation_mode_factor=0, + ) off_actuator = FRBCActuatorDescription( - id=str(uuid.uuid4()), - diagnostic_label="off.to.on.timer", + id=off_actuator_id, + diagnostic_label="off", operation_modes=[off_operation_mode], transitions=[], timers=[], @@ -364,6 +379,7 @@ def create_driving_system_description( valid_from=start_of_drive, actuators=[off_actuator], storage=storage_description, + actuator_statuses={off_actuator_id: off_actuator_status}, ) From 4d593f93464bf92916f68138ced16c5ff1a2340d Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 19 Feb 2025 12:40:23 +0100 Subject: [PATCH 18/33] Problems at the final generation step Signed-off-by: Vlad Iftime --- flexmeasures_s2/conftest.py | 4 +- .../frbc/fill_level_target_util.py | 5 +- .../frbc/frbc_operation_mode_wrapper.py | 16 +- .../device_planner/frbc/frbc_state.py | 157 +++++++++--------- .../frbc/operation_mode_profile_tree.py | 21 +-- .../frbc/s2_frbc_actuator_configuration.py | 2 + .../frbc/s2_frbc_device_planner.py | 47 +++--- .../frbc/s2_frbc_device_state_wrapper.py | 26 ++- .../frbc/usage_forecast_util.py | 2 +- .../tests/test_frbc_device.py | 111 ++++++------- 10 files changed, 185 insertions(+), 206 deletions(-) diff --git a/flexmeasures_s2/conftest.py b/flexmeasures_s2/conftest.py index 3646db3..a97ad46 100644 --- a/flexmeasures_s2/conftest.py +++ b/flexmeasures_s2/conftest.py @@ -14,8 +14,6 @@ from flexmeasures_s2 import S2_SCHEDULER_SPECS from flexmeasures_s2.models.const import FRBC_TYPE -from flexmeasures_s2.scheduler.test_frbc_device import test_device_state # noqa: F401 - @pytest.fixture(scope="session") def app(): @@ -60,7 +58,7 @@ def setup_frbc_asset(db: SQLAlchemy, setup_admin): # noqa: F811 asset.attributes = { "custom-scheduler": S2_SCHEDULER_SPECS, "flex-model": { - "S2-FRBC-device-state": test_device_state, # ?todo: add serialized state + "S2-FRBC-device-state": None, # ?todo: add serialized state }, } db.session.add(asset) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py index fcaf840..a78fc98 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py @@ -22,7 +22,6 @@ def split(self, date): def date_in_element(self, date): return self.start <= date <= self.end - class FillLevelTargetUtil: @@ -31,7 +30,7 @@ def from_fill_level_target_profile(fill_level_target_profile): elements = [] start = fill_level_target_profile.start_time for element in fill_level_target_profile.elements: - end = start + timedelta(seconds=element.duration.__root__) + end = start + timedelta(seconds=element.duration.root) elements.append( FillLevelTargetElement( start, @@ -42,7 +41,7 @@ def from_fill_level_target_profile(fill_level_target_profile): ) start = end + timedelta(milliseconds=1) return elements - + @staticmethod def get_elements_in_range(target_profile, start, end): elements_in_range = [] diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py index d4db751..994ef99 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py @@ -7,12 +7,12 @@ class FrbcOperationModeElementWrapper: def __init__(self, frbc_operation_mode_element): self.fill_rate = NumberRangeWrapper( - frbc_operation_mode_element.get_fill_rate().get_start_of_range(), - frbc_operation_mode_element.get_fill_rate().get_end_of_range(), + frbc_operation_mode_element.fill_rate.start_of_range, + frbc_operation_mode_element.fill_rate.end_of_range, ) self.power_ranges = [ - NumberRangeWrapper(pr.get_start_of_range(), pr.get_end_of_range()) - for pr in frbc_operation_mode_element.get_power_ranges() + NumberRangeWrapper(pr.start_of_range, pr.end_of_range) + for pr in frbc_operation_mode_element.power_ranges ] def get_fill_rate(self) -> NumberRangeWrapper: @@ -24,12 +24,12 @@ def get_power_ranges(self) -> List[NumberRangeWrapper]: class FrbcOperationModeWrapper: def __init__(self, frbc_operation_mode): - self.id = frbc_operation_mode.get_id() - self.diagnostic_label = frbc_operation_mode.get_diagnostic_label() - self.abnormal_condition_only = frbc_operation_mode.get_abnormal_condition_only() + self.id = frbc_operation_mode.id + self.diagnostic_label = frbc_operation_mode.diagnostic_label + self.abnormal_condition_only = frbc_operation_mode.abnormal_condition_only self.elements = [ FrbcOperationModeElementWrapper(element) - for element in frbc_operation_mode.get_elements() + for element in frbc_operation_mode.elements ] self.uses_factor = self.calculate_uses_factor() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 1a441fb..10e9c3f 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -1,17 +1,16 @@ from datetime import datetime +import uuid from s2python.frbc import ( FRBCSystemDescription, ) from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus -import \ - flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper +import flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) -import \ - flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep +import flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( SelectionResult, SelectionReason, @@ -24,15 +23,12 @@ class FrbcState: tariff_epsilon = 0.5 def __init__( - self, - device_state, - timestep, - present_fill_level, - previous_state: Optional["FrbcState"] = None, - actuator_configurations: Optional[ - Dict[str, S2ActuatorConfiguration]] = None, - actuator_statuses: Optional[ - Dict[str, FRBCActuatorStatus]] = None, + self, + device_state, + timestep, + present_fill_level, + previous_state: Optional["FrbcState"] = None, + actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, ): self.device_state = device_state self.timestep = timestep @@ -55,22 +51,22 @@ def __init__( self.system_description ) ) - self.actuator_statuses = actuator_statuses or {} + # TODO: Same problem as the Storage message. There is no way to store the status if previous_state is None: - for actuator_status in self.actuator_statuses.values(): - actuator_config = S2ActuatorConfiguration( + for a in self.system_description.actuators: + actuator_status = a.status + self.actuator_configurations[a.id] = S2ActuatorConfiguration( actuator_status.active_operation_mode_id, actuator_status.operation_mode_factor, ) - self.actuator_configurations[str(actuator_status.actuator_id)] = actuator_config + else: - self.calculate_state_values(previous_state, - self.actuator_configurations) + self.calculate_state_values(previous_state, self.actuator_configurations) @staticmethod def get_initial_timer_elapse_map_for_system_description( - system_description: FRBCSystemDescription, + system_description: FRBCSystemDescription, ) -> Dict[str, datetime]: timer_elapse_map = {} for actuator in system_description.actuators: @@ -82,9 +78,9 @@ def get_initial_timer_elapse_map_for_system_description( return timer_elapse_map def calculate_state_values( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): self.timestep_energy = 0.0 self.fill_level = previous_state.get_fill_level() @@ -96,26 +92,26 @@ def calculate_state_values( actuator_configuration.get_operation_mode_id(), ) self.timestep_energy += ( - self.device_state.get_operation_mode_power( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds + self.device_state.get_operation_mode_power( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds ) self.fill_level += ( - self.device_state.get_operation_mode_fill_rate( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds - ) - self.fill_level -= ( - s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( - self.timestep, self.fill_level + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), ) * seconds + ) + self.fill_level -= ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) + * seconds ) self.fill_level += self.timestep.get_forecasted_usage() self.bucket = ( @@ -128,13 +124,13 @@ def calculate_state_values( self.timestep.add_state(self) def update_timers( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): if ( - previous_state.system_description.get_valid_from() - == self.system_description.get_valid_from() + previous_state.system_description.get_valid_from() + == self.system_description.get_valid_from() ): self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() for actuator_id, actuator_configuration in actuator_configurations.items(): @@ -172,8 +168,8 @@ def calculate_scores(self, previous_state: "FrbcState"): target = self.timestep.get_target() if isinstance(target, TargetProfile.JouleElement): self.sum_squared_distance = ( - previous_state.get_sum_squared_distance() - + (target.get_joules() - self.timestep_energy) ** 2 + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 ) self.sum_energy_cost = previous_state.get_sum_energy_cost() @@ -184,25 +180,25 @@ def calculate_scores(self, previous_state: "FrbcState"): previous_state.get_sum_squared_constraint_violation() ) if ( - self.timestep.get_max_constraint() is not None - and self.timestep_energy > self.timestep.get_max_constraint() + self.timestep.get_max_constraint() is not None + and self.timestep_energy > self.timestep.get_max_constraint() ): squared_constraint_violation += ( - self.timestep_energy - self.timestep.get_max_constraint() - ) ** 2 + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 if ( - self.timestep.get_min_constraint() is not None - and self.timestep_energy < self.timestep.get_min_constraint() + self.timestep.get_min_constraint() is not None + and self.timestep_energy < self.timestep.get_min_constraint() ): squared_constraint_violation += ( - self.timestep.get_min_constraint() - self.timestep_energy - ) ** 2 + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 self.sum_squared_constraint_violation = ( - previous_state.get_sum_squared_constraint_violation() - + squared_constraint_violation + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 + previous_state.get_sum_squared_energy() + self.timestep_energy**2 ) @staticmethod @@ -218,22 +214,21 @@ def generate_next_timestep_states(self, target_timestep): @staticmethod def try_create_next_state( - previous_state: "FrbcState", - target_timestep, - actuator_configs_for_target_timestep: Dict[ - str, S2ActuatorConfiguration], + previous_state: "FrbcState", + target_timestep, + actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], ): if ( - previous_state.get_system_description().get_valid_from() - == target_timestep.get_system_description().get_valid_from() + previous_state.system_description.valid_from + == target_timestep.system_description.valid_from ): for ( - actuator_id, - actuator_configuration, + actuator_id, + actuator_configuration, ) in actuator_configs_for_target_timestep.items(): previous_operation_mode_id = ( previous_state.get_actuator_configurations()[ - actuator_id + uuid.UUID(actuator_id) ].get_operation_mode_id() ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() @@ -253,8 +248,8 @@ def try_create_next_state( ) ) if ( - timer_is_finished_at - and target_timestep.get_start_date() < timer_is_finished_at + timer_is_finished_at + and target_timestep.get_start_date() < timer_is_finished_at ): return False FrbcState( @@ -267,29 +262,29 @@ def try_create_next_state( def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: if ( - abs( - self.sum_squared_constraint_violation - - other_state.get_sum_squared_constraint_violation() - ) - >= self.constraint_epsilon + abs( + self.sum_squared_constraint_violation + - other_state.get_sum_squared_constraint_violation() + ) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_constraint_violation - < other_state.get_sum_squared_constraint_violation(), + < other_state.get_sum_squared_constraint_violation(), reason=SelectionReason.CONGESTION_CONSTRAINT, ) elif ( - abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) - >= self.constraint_epsilon + abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_distance - < other_state.get_sum_squared_distance(), + < other_state.get_sum_squared_distance(), reason=SelectionReason.ENERGY_TARGET, ) elif ( - abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) - >= self.tariff_epsilon + abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) + >= self.tariff_epsilon ): return SelectionResult( result=self.sum_energy_cost < other_state.get_sum_energy_cost(), @@ -304,8 +299,8 @@ def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: def is_within_fill_level_range(self): fill_level_range = self.system_description.get_storage().get_fill_level_range() return ( - self.fill_level >= fill_level_range.get_start_of_range() - and self.fill_level <= fill_level_range.get_end_of_range() + self.fill_level >= fill_level_range.get_start_of_range() + and self.fill_level <= fill_level_range.get_end_of_range() ) def get_fill_level_distance(self): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index 713220f..2947006 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -115,12 +115,11 @@ def get_latest_before(before, select_from, get_date_time): if select_from: for current in select_from: if current: - current_date_time = get_date_time(current).replace( - tzinfo=None) + current_date_time = get_date_time(current).replace(tzinfo=None) before = before.replace(tzinfo=None) if current_date_time <= before and ( - latest_before is None - or current_date_time > latest_before_date_time + latest_before is None + or current_date_time > latest_before_date_time ): latest_before = current latest_before_date_time = current_date_time @@ -139,13 +138,9 @@ def get_fill_level_target_for_timestep( for e in FillLevelTargetUtil.get_elements_in_range( fill_level_target_profile, time_step_start, time_step_end ): - if e.lower_limit is not None and ( - lower is None or e.lower_limit > lower - ): + if e.lower_limit is not None and (lower is None or e.lower_limit > lower): lower = e.lower_limit - if e.upper_limit is not None and ( - upper is None or e.upper_limit < upper - ): + if e.upper_limit is not None and (upper is None or e.upper_limit < upper): upper = e.upper_limit if lower is None and upper is None: return None @@ -161,8 +156,10 @@ def get_usage_forecast_for_timestep( return 0 time_step_end -= timedelta(milliseconds=1) usage = 0 - usage = UsageForecastUtil.sub_profile(usage_forecast, time_step_start, time_step_end) - + usage = UsageForecastUtil.sub_profile( + usage_forecast, time_step_start, time_step_end + ) + return usage def find_best_plan( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py index b739d5a..e8f6858 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py @@ -1,5 +1,7 @@ from typing import Dict, Any +# TODO: Should this just be an actuator description + class S2ActuatorConfiguration: def __init__(self, operation_mode_id, factor): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index 7d451cf..c06166a 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -6,13 +6,11 @@ from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.proposal import Proposal from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import \ - S2FrbcPlan +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( S2FrbcInstructionProfile, ) -from flexmeasures_s2.profile_steering.common.profile_metadata import \ - ProfileMetadata +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( S2FrbcDeviceStateWrapper, ) @@ -33,10 +31,10 @@ # make sure this is a DevicePlanner class S2FrbcDevicePlanner(DevicePlanner): def __init__( - self, - s2_frbc_state: S2FrbcDeviceState, - profile_metadata: ProfileMetadata, - plan_due_by_date: datetime, + self, + s2_frbc_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, ): self.s2_frbc_state = s2_frbc_state self.profile_metadata = profile_metadata @@ -71,23 +69,21 @@ def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: if latest_before_first_ptu is None: active_and_upcoming_system_descriptions_has_active_storage = any( # TODO: ask if TypeError: can't compare offset-naive and offset-aware datetimes could be solved differently - self.profile_metadata.get_profile_end().replace( - tzinfo=None) >= sd.valid_from.replace( - tzinfo=None) >= self.profile_metadata.get_profile_start().replace( - tzinfo=None) + self.profile_metadata.get_profile_end().replace(tzinfo=None) + >= sd.valid_from.replace(tzinfo=None) + >= self.profile_metadata.get_profile_start().replace(tzinfo=None) for sd in storage_state.get_system_descriptions() ) else: active_and_upcoming_system_descriptions_has_active_storage = any( - self.profile_metadata.get_profile_end().replace( - tzinfo=None) >= sd.valid_from.replace( - tzinfo=None) >= latest_before_first_ptu.valid_from.replace( - tzinfo=None) + self.profile_metadata.get_profile_end().replace(tzinfo=None) + >= sd.valid_from.replace(tzinfo=None) + >= latest_before_first_ptu.valid_from.replace(tzinfo=None) for sd in storage_state.get_system_descriptions() ) return ( - storage_state._is_online() - and active_and_upcoming_system_descriptions_has_active_storage + storage_state._is_online() + and active_and_upcoming_system_descriptions_has_active_storage ) def get_device_id(self) -> str: @@ -100,11 +96,11 @@ def get_device_name(self) -> str: return self.s2_frbc_state.get_device_name() def create_improved_planning( - self, - diff_to_global_target: TargetProfile, - diff_to_max: JouleProfile, - diff_to_min: JouleProfile, - plan_due_by_date: datetime, + self, + diff_to_global_target: TargetProfile, + diff_to_max: JouleProfile, + diff_to_min: JouleProfile, + plan_due_by_date: datetime, ) -> Proposal: if self.accepted_plan is None: raise ValueError("No accepted plan found") @@ -137,8 +133,7 @@ def create_improved_planning( ) return proposal - def create_initial_planning(self, - plan_due_by_date: datetime) -> JouleProfile: + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: if self.is_storage_available(self.s2_frbc_state): self.latest_plan = self.state_tree.find_best_plan( TargetProfile.null_profile(self.profile_metadata), @@ -196,7 +191,7 @@ def get_device_plan(self) -> Optional[DevicePlan]: @staticmethod def convert_plan_to_instructions( - profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan + profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan ) -> S2FrbcInstructionProfile: elements = [] actuator_configurations_per_timestep = device_plan.get_operation_mode_id() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index cf18ee9..f4003be 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -78,11 +78,9 @@ def create_actuator_operation_mode_map( self, target_timestep: FrbcTimestep ) -> Dict[str, List[str]]: actuator_operation_mode_map = {} - for a in target_timestep.get_system_description().get_actuators(): - actuator_operation_mode_map[a.get_id()] = [ - om.get_id() - for om in a.get_operation_modes() - if not om.get_abnormal_condition_only() + for a in target_timestep.get_system_description().actuators: + actuator_operation_mode_map[str(a.id)] = [ + str(om.id) for om in a.operation_modes if not om.abnormal_condition_only ] self.actuator_operation_mode_map_per_timestep[ target_timestep.get_start_date() @@ -99,13 +97,13 @@ def get_operation_mode( om_key = f"{actuator_id}-{operation_mode_id}" if om_key in self.operation_modes: return self.operation_modes[om_key] - actuators = target_timestep.get_system_description().get_actuators() + actuators = target_timestep.get_system_description().actuators found_actuator_description = next( - (ad for ad in actuators if ad.get_id() == actuator_id), None + (ad for ad in actuators if str(ad.id) == actuator_id), None ) if found_actuator_description: - for operation_mode in found_actuator_description.get_operation_modes(): - if operation_mode.get_id() == operation_mode_id: + for operation_mode in found_actuator_description.operation_modes: + if str(operation_mode.id) == operation_mode_id: found_operation_mode = FrbcOperationModeWrapper(operation_mode) self.operation_modes[om_key] = found_operation_mode return found_operation_mode @@ -206,10 +204,10 @@ def get_transition( raise ValueError( f"Actuator description not found for actuator {actuator_id}" ) - for transition in actuator_description.get_transitions(): + for transition in actuator_description.transitions: if ( - transition.get_from() == from_operation_mode_id - and transition.get_to() == to_operation_mode_id + str(transition.from_) == from_operation_mode_id + and str(transition.to) == to_operation_mode_id ): return transition return None @@ -351,8 +349,8 @@ def get_actuator_description( return next( ( ad - for ad in target_timestep.get_system_description().get_actuators() - if ad.get_id() == actuator_id + for ad in target_timestep.get_system_description().actuators + if str(ad.id) == actuator_id ), None, ) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py index efa69ac..979defb 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -32,7 +32,7 @@ def from_storage_usage_profile(usage_forecast): elements = [] start = usage_forecast.start_time for element in usage_forecast.elements: - end = start + timedelta(seconds=element.duration.__root__) + end = start + timedelta(seconds=element.duration.root) elements.append( UsageForecastElement(start, end, element.usage_rate_expected) ) diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 29e3a87..ee5e14b 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -6,8 +6,7 @@ from s2python.frbc.frbc_fill_level_target_profile_element import ( FRBCFillLevelTargetProfileElement, ) -from s2python.frbc.frbc_leakage_behaviour_element import \ - FRBCLeakageBehaviourElement +from s2python.frbc.frbc_leakage_behaviour_element import FRBCLeakageBehaviourElement from s2python.frbc.frbc_operation_mode import FRBCOperationMode from s2python.frbc.frbc_usage_forecast_element import FRBCUsageForecastElement from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( @@ -16,15 +15,13 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( S2FrbcDeviceState, ) -from flexmeasures_s2.profile_steering.common.profile_metadata import \ - ProfileMetadata +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from s2python.frbc import FRBCSystemDescription from s2python.frbc import FRBCUsageForecast from s2python.frbc import FRBCFillLevelTargetProfile from s2python.frbc import FRBCLeakageBehaviour from s2python.frbc import FRBCOperationModeElement -from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, \ - FRBCStorageDescription +from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, FRBCStorageDescription from s2python.common import PowerRange from s2python.common import NumberRange from s2python.common import CommodityQuantity @@ -62,8 +59,7 @@ def test_connexxion_ev_bus_baseline_byd_225(): ) # Create leakage behaviour - recharge_leakage1 = create_recharge_leakage_behaviour( - start_of_recharge1) + recharge_leakage1 = create_recharge_leakage_behaviour(start_of_recharge1) # Create usage forecast recharge_usage_forecast1 = create_recharge_usage_forecast( @@ -103,8 +99,7 @@ def test_connexxion_ev_bus_baseline_byd_225(): charging_power_kw_day, soc_percentage_before_charging2, ) - recharge_leakage2 = create_recharge_leakage_behaviour( - start_of_recharge2) + recharge_leakage2 = create_recharge_leakage_behaviour(start_of_recharge2) recharge_usage_forecast2 = create_recharge_usage_forecast( start_of_recharge2, recharge_duration2 ) @@ -141,19 +136,17 @@ def test_connexxion_ev_bus_baseline_byd_225(): recharge_fill_level_target1, recharge_fill_level_target2, ], - computational_parameters=S2FrbcDeviceState.ComputationalParameters( - 1000, 20 - ), + computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, 20), ) target_metadata = ProfileMetadata( - profile_start=omloop_starts_at, timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288 + profile_start=omloop_starts_at, + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288, ) plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - planner = S2FrbcDevicePlanner(device_state, target_metadata, - plan_due_by_date) + planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) planning = planner.create_initial_planning(plan_due_by_date) assert planning == get_JouleProfileTarget() @@ -161,10 +154,10 @@ def test_connexxion_ev_bus_baseline_byd_225(): @staticmethod def create_recharge_system_description( - start_of_recharge, - charge_power_soc_percentage_per_second, - charging_power_kw, - soc_percentage_before_charging, + start_of_recharge, + charge_power_soc_percentage_per_second, + charging_power_kw, + soc_percentage_before_charging, ) -> FRBCSystemDescription: # Create and return a mock system description for recharging on_operation_element = FRBCOperationModeElement( @@ -222,21 +215,16 @@ def create_recharge_system_description( transition_from_on_to_off = Transition( id=str(uuid.uuid4()), - **{ - "from": id_on_operation_mode - }, + **{"from": id_on_operation_mode}, to=id_off_operation_mode, start_timers=[id_off_to_on_timer], blocking_timers=[id_on_to_off_timer], transition_duration=None, abnormal_condition_only=False - ) transition_from_off_to_on = Transition( id=str(uuid.uuid4()), - **{ - "from": id_off_operation_mode - }, + **{"from": id_off_operation_mode}, to=id_on_operation_mode, start_timers=[id_on_to_off_timer], blocking_timers=[id_off_to_on_timer], @@ -259,6 +247,11 @@ def create_recharge_system_description( transitions=[transition_from_on_to_off, transition_from_off_to_on], timers=[on_to_off_timer, off_to_on_timer], supported_commodities=[Commodity.ELECTRICITY], + status=charge_actuator_status, + ) + + storage_status = FRBCStorageStatus( + message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_charging ) frbc_storage_description = FRBCStorageDescription( @@ -268,6 +261,7 @@ def create_recharge_system_description( provides_fill_level_target_profile=True, provides_usage_forecast=False, fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + status=storage_status, ) frbc_system_description = FRBCSystemDescription( @@ -280,67 +274,66 @@ def create_recharge_system_description( return frbc_system_description -def create_recharge_leakage_behaviour( start_of_recharge): +def create_recharge_leakage_behaviour(start_of_recharge): return FRBCLeakageBehaviour( message_id=str(uuid.uuid4()), valid_from=start_of_recharge, elements=[ FRBCLeakageBehaviourElement( - fill_level_range=NumberRange(start_of_range=0, - end_of_range=100), + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), leakage_rate=0, ) ], ) -def create_recharge_usage_forecast(start_of_recharge, - recharge_duration): +def create_recharge_usage_forecast(start_of_recharge, recharge_duration): no_usage = FRBCUsageForecastElement( - duration=int(recharge_duration.total_seconds()), - usage_rate_expected=0 + duration=int(recharge_duration.total_seconds()), usage_rate_expected=0 ) return FRBCUsageForecast( - message_id=str(uuid.uuid4()), start_time=start_of_recharge, - elements=[no_usage] + message_id=str(uuid.uuid4()), start_time=start_of_recharge, elements=[no_usage] ) @staticmethod def create_recharge_fill_level_target_profile( - start_of_recharge, - recharge_duration, - final_fill_level_target, - soc_percentage_before_charging, + start_of_recharge, + recharge_duration, + final_fill_level_target, + soc_percentage_before_charging, ): during_charge = FRBCFillLevelTargetProfileElement( duration=max(recharge_duration.total_seconds() - 10, 0), fill_level_range=NumberRange( - start_of_range=soc_percentage_before_charging, - end_of_range=100), + start_of_range=soc_percentage_before_charging, end_of_range=100 + ), ) end_of_charge = FRBCFillLevelTargetProfileElement( duration=min(recharge_duration.total_seconds(), 10), - fill_level_range=NumberRange(start_of_range=final_fill_level_target, - end_of_range=100), + fill_level_range=NumberRange( + start_of_range=final_fill_level_target, end_of_range=100 + ), ) return FRBCFillLevelTargetProfile( message_id=str(uuid.uuid4()), start_time=start_of_recharge, - elements=[during_charge, end_of_charge] + elements=[during_charge, end_of_charge], ) @staticmethod -def create_driving_system_description( - start_of_drive, soc_percentage_before_driving -): +def create_driving_system_description(start_of_drive, soc_percentage_before_driving): off_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), fill_rate=NumberRange(start_of_range=0, end_of_range=0), power_ranges=[ - PowerRange(start_of_range=0, end_of_range=0, - commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1)], + PowerRange( + start_of_range=0, + end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], ) id_off_operation_mode = str(uuid.uuid4()) off_operation_mode = FRBCOperationMode( @@ -363,9 +356,11 @@ def create_driving_system_description( transitions=[], timers=[], supported_commodities=[Commodity.ELECTRICITY], + status=off_actuator_status, + ) + storage_status = FRBCStorageStatus( + message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_driving ) - storage_status = FRBCStorageStatus(message_id=str(uuid.uuid4()), - present_fill_level=soc_percentage_before_driving) storage_description = FRBCStorageDescription( diagnostic_label="battery", fill_level_label="SoC %", @@ -373,24 +368,24 @@ def create_driving_system_description( provides_fill_level_target_profile=True, provides_usage_forecast=False, fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + status=storage_status, ) return FRBCSystemDescription( message_id=str(uuid.uuid4()), valid_from=start_of_drive, actuators=[off_actuator], storage=storage_description, - actuator_statuses={off_actuator_id: off_actuator_status}, ) @staticmethod def create_driving_usage_forecast( - start_of_driving, next_drive_duration, soc_usage_per_second + start_of_driving, next_drive_duration, soc_usage_per_second ): no_usage = FRBCUsageForecastElement( duration=int(next_drive_duration.total_seconds()), usage_rate_expected=(-1 * soc_usage_per_second), ) - return FRBCUsageForecast(message_id=str(uuid.uuid4()), - start_time=start_of_driving, - elements=[no_usage]) + return FRBCUsageForecast( + message_id=str(uuid.uuid4()), start_time=start_of_driving, elements=[no_usage] + ) From 6b2dbd424155d9b9d6d1be5a3f44f1f77616925d Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Sat, 22 Feb 2025 12:56:57 +0100 Subject: [PATCH 19/33] The algorithm works with slight deviations probably due to rounding errors Signed-off-by: Vlad Iftime --- .../profile_steering/common/output.txt | 3915 +++++++++++++++++ .../profile_steering/common/soc_profile.py | 10 +- .../frbc/fill_level_target_util.py | 4 +- .../frbc/frbc_operation_mode_wrapper.py | 18 +- .../device_planner/frbc/frbc_state.py | 385 +- .../device_planner/frbc/frbc_timestep.py | 11 +- .../frbc/operation_mode_profile_tree.py | 99 +- .../frbc/s2_frbc_actuator_configuration.py | 5 +- .../frbc/s2_frbc_device_planner.py | 2 +- .../frbc/s2_frbc_device_state.py | 15 +- .../frbc/s2_frbc_device_state_wrapper.py | 94 +- .../frbc/s2_frbc_instruction_profile.py | 5 +- .../device_planner/frbc/s2_frbc_plan.py | 5 +- .../frbc/usage_forecast_util.py | 76 +- .../tests/test_frbc_device.py | 81 +- flexmeasures_s2/pytest.ini | 2 + requirements/testi.txt | 26 + 17 files changed, 4494 insertions(+), 259 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/common/output.txt create mode 100644 flexmeasures_s2/pytest.ini create mode 100644 requirements/testi.txt diff --git a/flexmeasures_s2/profile_steering/common/output.txt b/flexmeasures_s2/profile_steering/common/output.txt new file mode 100644 index 0000000..572fb68 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/output.txt @@ -0,0 +1,3915 @@ +Generating next timestep states for timestep 12 +State 0 at position 0 +State 1 at position 16 +Generating next timestep states for timestep 13 +Generating next timestep states for timestep 13 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +Generating next timestep states for timestep 14 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +Generating next timestep states for timestep 15 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +Generating next timestep states for timestep 16 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +Generating next timestep states for timestep 17 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +Generating next timestep states for timestep 18 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +Generating next timestep states for timestep 19 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +Generating next timestep states for timestep 20 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +Generating next timestep states for timestep 21 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +Generating next timestep states for timestep 22 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +Generating next timestep states for timestep 23 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +Generating next timestep states for timestep 24 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +Generating next timestep states for timestep 25 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +Generating next timestep states for timestep 26 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +Generating next timestep states for timestep 27 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +Generating next timestep states for timestep 28 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +Generating next timestep states for timestep 29 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +Generating next timestep states for timestep 30 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +Generating next timestep states for timestep 31 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +Generating next timestep states for timestep 32 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +Generating next timestep states for timestep 33 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +Generating next timestep states for timestep 34 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +Generating next timestep states for timestep 35 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +Generating next timestep states for timestep 36 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +Generating next timestep states for timestep 37 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +Generating next timestep states for timestep 38 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +Generating next timestep states for timestep 39 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +Generating next timestep states for timestep 40 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +Generating next timestep states for timestep 41 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +Generating next timestep states for timestep 42 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +Generating next timestep states for timestep 43 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +Generating next timestep states for timestep 44 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +Generating next timestep states for timestep 45 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +Generating next timestep states for timestep 46 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +Generating next timestep states for timestep 47 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +Generating next timestep states for timestep 48 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +Generating next timestep states for timestep 49 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +Generating next timestep states for timestep 50 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +Generating next timestep states for timestep 51 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +Generating next timestep states for timestep 52 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +Generating next timestep states for timestep 53 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +Generating next timestep states for timestep 54 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +Generating next timestep states for timestep 55 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +Generating next timestep states for timestep 56 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +Generating next timestep states for timestep 57 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +Generating next timestep states for timestep 58 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +Generating next timestep states for timestep 59 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +Generating next timestep states for timestep 60 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +Generating next timestep states for timestep 61 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +Generating next timestep states for timestep 62 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +Generating next timestep states for timestep 63 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +Generating next timestep states for timestep 64 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +Generating next timestep states for timestep 65 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +Generating next timestep states for timestep 66 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +Generating next timestep states for timestep 67 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +Generating next timestep states for timestep 68 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +Generating next timestep states for timestep 69 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +Generating next timestep states for timestep 70 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +Generating next timestep states for timestep 71 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +Generating next timestep states for timestep 72 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 73 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 74 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 75 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 76 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 77 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 78 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 79 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 80 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 81 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 82 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 83 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 84 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 85 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 86 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 87 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 88 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 89 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 90 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 91 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 92 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 93 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 94 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 95 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 96 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 97 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 98 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +State 0 at position 0 +State 1 at position 16 +State 2 at position 32 +State 3 at position 48 +State 4 at position 64 +State 5 at position 81 +State 6 at position 97 +State 7 at position 113 +State 8 at position 129 +State 9 at position 145 +State 10 at position 162 +State 11 at position 178 +State 12 at position 194 +State 13 at position 210 +State 14 at position 226 +State 15 at position 243 +State 16 at position 259 +State 17 at position 275 +State 18 at position 291 +State 19 at position 307 +State 20 at position 324 +State 21 at position 340 +State 22 at position 356 +State 23 at position 372 +State 24 at position 388 +State 25 at position 405 +State 26 at position 421 +State 27 at position 437 +State 28 at position 453 +State 29 at position 469 +State 30 at position 486 +State 31 at position 502 +State 32 at position 518 +State 33 at position 534 +State 34 at position 550 +State 35 at position 567 +State 36 at position 583 +State 37 at position 599 +State 38 at position 615 +State 39 at position 631 +State 40 at position 648 +State 41 at position 664 +State 42 at position 680 +State 43 at position 696 +State 44 at position 712 +State 45 at position 729 +State 46 at position 745 +State 47 at position 761 +State 48 at position 777 +State 49 at position 793 +State 50 at position 810 +State 51 at position 826 +State 52 at position 842 +State 53 at position 858 +State 54 at position 875 +State 55 at position 891 +State 56 at position 907 +State 57 at position 923 +State 58 at position 939 +State 59 at position 956 +State 60 at position 972 +State 61 at position 988 +Generating next timestep states for timestep 99 +State 0 at position 988 +Generating next timestep states for timestep 100 +State 0 at position 988 +Generating next timestep states for timestep 101 +State 0 at position 988 +Generating next timestep states for timestep 102 +State 0 at position 988 +Generating next timestep states for timestep 103 +State 0 at position 988 +Generating next timestep states for timestep 104 +State 0 at position 988 +Generating next timestep states for timestep 105 +State 0 at position 988 +Generating next timestep states for timestep 106 +State 0 at position 988 +Generating next timestep states for timestep 107 +State 0 at position 988 +Generating next timestep states for timestep 108 +State 0 at position 988 +Generating next timestep states for timestep 109 +State 0 at position 988 +Generating next timestep states for timestep 110 +State 0 at position 365 +Generating next timestep states for timestep 111 +Generating next timestep states for timestep 112 +Generating next timestep states for timestep 113 +Generating next timestep states for timestep 114 +Generating next timestep states for timestep 115 +Generating next timestep states for timestep 116 +Generating next timestep states for timestep 117 +Generating next timestep states for timestep 118 +Generating next timestep states for timestep 119 +Generating next timestep states for timestep 120 +Generating next timestep states for timestep 121 +Generating next timestep states for timestep 122 +Generating next timestep states for timestep 123 +Generating next timestep states for timestep 124 +Generating next timestep states for timestep 125 +Generating next timestep states for timestep 126 +Generating next timestep states for timestep 127 +Generating next timestep states for timestep 128 +Generating next timestep states for timestep 129 +Generating next timestep states for timestep 130 +Generating next timestep states for timestep 131 +Generating next timestep states for timestep 132 +Generating next timestep states for timestep 133 +Generating next timestep states for timestep 134 +Generating next timestep states for timestep 135 +Generating next timestep states for timestep 136 +Generating next timestep states for timestep 137 +Generating next timestep states for timestep 138 +Generating next timestep states for timestep 139 +Generating next timestep states for timestep 140 +Generating next timestep states for timestep 141 +Generating next timestep states for timestep 142 +Generating next timestep states for timestep 143 +Generating next timestep states for timestep 144 +Generating next timestep states for timestep 145 +Generating next timestep states for timestep 146 +Generating next timestep states for timestep 147 +Generating next timestep states for timestep 148 +Generating next timestep states for timestep 149 +Generating next timestep states for timestep 150 +Generating next timestep states for timestep 151 +Generating next timestep states for timestep 152 +Generating next timestep states for timestep 153 +Generating next timestep states for timestep 154 +Generating next timestep states for timestep 155 +Generating next timestep states for timestep 156 +Generating next timestep states for timestep 157 +Generating next timestep states for timestep 158 +Generating next timestep states for timestep 159 +Generating next timestep states for timestep 160 +Generating next timestep states for timestep 161 +Generating next timestep states for timestep 162 +Generating next timestep states for timestep 163 +Generating next timestep states for timestep 164 +Generating next timestep states for timestep 165 +Generating next timestep states for timestep 166 +Generating next timestep states for timestep 167 +Generating next timestep states for timestep 168 +Generating next timestep states for timestep 169 +Generating next timestep states for timestep 170 +Generating next timestep states for timestep 171 +Generating next timestep states for timestep 172 +Generating next timestep states for timestep 173 +Generating next timestep states for timestep 174 +Generating next timestep states for timestep 175 +Generating next timestep states for timestep 176 +Generating next timestep states for timestep 177 +Generating next timestep states for timestep 178 +Generating next timestep states for timestep 179 +Generating next timestep states for timestep 180 +Generating next timestep states for timestep 181 +Generating next timestep states for timestep 182 +Generating next timestep states for timestep 183 +Generating next timestep states for timestep 184 +Generating next timestep states for timestep 185 +Generating next timestep states for timestep 186 +Generating next timestep states for timestep 187 +Generating next timestep states for timestep 188 +Generating next timestep states for timestep 189 +Generating next timestep states for timestep 190 +Generating next timestep states for timestep 191 +Generating next timestep states for timestep 192 +Generating next timestep states for timestep 193 +Generating next timestep states for timestep 194 +Generating next timestep states for timestep 195 +Generating next timestep states for timestep 196 +Generating next timestep states for timestep 197 +Generating next timestep states for timestep 198 +Generating next timestep states for timestep 199 +Generating next timestep states for timestep 200 +Generating next timestep states for timestep 201 +Generating next timestep states for timestep 202 +Generating next timestep states for timestep 203 +Generating next timestep states for timestep 204 +Generating next timestep states for timestep 205 +Generating next timestep states for timestep 206 +Generating next timestep states for timestep 207 +Generating next timestep states for timestep 208 +Generating next timestep states for timestep 209 +Generating next timestep states for timestep 210 +Generating next timestep states for timestep 211 +Generating next timestep states for timestep 212 +Generating next timestep states for timestep 213 +Generating next timestep states for timestep 214 +Generating next timestep states for timestep 215 +Generating next timestep states for timestep 216 +Generating next timestep states for timestep 217 +Generating next timestep states for timestep 218 +Generating next timestep states for timestep 219 +Generating next timestep states for timestep 220 +Generating next timestep states for timestep 221 +Generating next timestep states for timestep 222 +Generating next timestep states for timestep 223 +Generating next timestep states for timestep 224 +Generating next timestep states for timestep 225 +Generating next timestep states for timestep 226 +Generating next timestep states for timestep 227 +Generating next timestep states for timestep 228 +Generating next timestep states for timestep 229 +Generating next timestep states for timestep 230 +Generating next timestep states for timestep 231 +Generating next timestep states for timestep 232 +Generating next timestep states for timestep 233 +Generating next timestep states for timestep 234 +Generating next timestep states for timestep 235 +Generating next timestep states for timestep 236 +Generating next timestep states for timestep 237 +Generating next timestep states for timestep 238 +Generating next timestep states for timestep 239 +Generating next timestep states for timestep 240 +Generating next timestep states for timestep 241 +Generating next timestep states for timestep 242 +Generating next timestep states for timestep 243 +Generating next timestep states for timestep 244 +Generating next timestep states for timestep 245 +Generating next timestep states for timestep 246 +Generating next timestep states for timestep 247 +Generating next timestep states for timestep 248 +Generating next timestep states for timestep 249 +Generating next timestep states for timestep 250 +Generating next timestep states for timestep 251 +Generating next timestep states for timestep 252 +Generating next timestep states for timestep 253 +Generating next timestep states for timestep 254 +Generating next timestep states for timestep 255 +Generating next timestep states for timestep 256 +Generating next timestep states for timestep 257 +Generating next timestep states for timestep 258 +Generating next timestep states for timestep 259 +Generating next timestep states for timestep 260 +Generating next timestep states for timestep 261 +Generating next timestep states for timestep 262 +Generating next timestep states for timestep 263 +Generating next timestep states for timestep 264 +Generating next timestep states for timestep 265 +Generating next timestep states for timestep 266 +Generating next timestep states for timestep 267 +Generating next timestep states for timestep 268 +Generating next timestep states for timestep 269 +Generating next timestep states for timestep 270 +Generating next timestep states for timestep 271 +Generating next timestep states for timestep 272 +Generating next timestep states for timestep 273 +Generating next timestep states for timestep 274 +Generating next timestep states for timestep 275 +Generating next timestep states for timestep 276 +Generating next timestep states for timestep 277 +Generating next timestep states for timestep 278 +Generating next timestep states for timestep 279 +Generating next timestep states for timestep 280 +Generating next timestep states for timestep 281 +Generating next timestep states for timestep 282 +Generating next timestep states for timestep 283 +Generating next timestep states for timestep 284 +Generating next timestep states for timestep 285 +Generating next timestep states for timestep 286 +FAILED \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py index bf1fb9c..f3acb67 100644 --- a/flexmeasures_s2/profile_steering/common/soc_profile.py +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -6,11 +6,13 @@ class SoCProfile(AbstractProfile[float, "SoCProfile"]): def __init__( - self, profile_start, timestep_duration, elements: Optional[List[float]] = None + self, profile_metadata: ProfileMetadata, elements: Optional[List[float]] = None ): - self.profile_start = profile_start - self.timestep_duration = timestep_duration - super().__init__(profile_start, elements if elements is not None else []) + self.profile_metadata = profile_metadata + self.timestep_duration = self.profile_metadata.get_timestep_duration() + self.profile_start = self.profile_metadata.get_profile_start() + self.profile_end = self.profile_metadata.get_profile_end() + super().__init__(self.profile_metadata, elements if elements is not None else []) def default_value(self) -> Optional[float]: return None diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py index a78fc98..bc101e0 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py @@ -1,4 +1,4 @@ -from datetime import timedelta +from datetime import timedelta, timezone class FillLevelTargetElement: @@ -28,7 +28,7 @@ class FillLevelTargetUtil: @staticmethod def from_fill_level_target_profile(fill_level_target_profile): elements = [] - start = fill_level_target_profile.start_time + start = fill_level_target_profile.start_time.astimezone(timezone.utc) for element in fill_level_target_profile.elements: end = start + timedelta(seconds=element.duration.root) elements.append( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py index 994ef99..0f73376 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py @@ -2,10 +2,10 @@ from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( NumberRangeWrapper, ) - +from s2python.frbc import FRBCOperationModeElement class FrbcOperationModeElementWrapper: - def __init__(self, frbc_operation_mode_element): + def __init__(self, frbc_operation_mode_element: FRBCOperationModeElement): self.fill_rate = NumberRangeWrapper( frbc_operation_mode_element.fill_rate.start_of_range, frbc_operation_mode_element.fill_rate.end_of_range, @@ -14,6 +14,11 @@ def __init__(self, frbc_operation_mode_element): NumberRangeWrapper(pr.start_of_range, pr.end_of_range) for pr in frbc_operation_mode_element.power_ranges ] + self.fill_level_range = NumberRangeWrapper( + frbc_operation_mode_element.fill_level_range.start_of_range, + frbc_operation_mode_element.fill_level_range.end_of_range, + ) + self.frbc_operation_mode_element = frbc_operation_mode_element def get_fill_rate(self) -> NumberRangeWrapper: return self.fill_rate @@ -21,6 +26,11 @@ def get_fill_rate(self) -> NumberRangeWrapper: def get_power_ranges(self) -> List[NumberRangeWrapper]: return self.power_ranges + def get_fill_level_range(self) -> NumberRangeWrapper: + return self.fill_level_range + + def get_power_ranges(self): + return self.frbc_operation_mode_element.power_ranges class FrbcOperationModeWrapper: def __init__(self, frbc_operation_mode): @@ -50,8 +60,8 @@ def calculate_uses_factor(self) -> bool: for power_range in element.get_power_ranges(): if ( abs( - power_range.get_start_of_range() - - power_range.get_end_of_range() + power_range.start_of_range + - power_range.end_of_range ) > S2FrbcDeviceStateWrapper.epsilon ): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 10e9c3f..82e95e0 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -5,17 +5,22 @@ ) from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus -import flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper +import \ + flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) -import flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep +import \ + flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import \ + S2FrbcDeviceState from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( SelectionResult, SelectionReason, ) -from typing import Dict, Optional + +from typing import Dict, Optional, Any class FrbcState: @@ -23,64 +28,176 @@ class FrbcState: tariff_epsilon = 0.5 def __init__( - self, - device_state, - timestep, - present_fill_level, - previous_state: Optional["FrbcState"] = None, - actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, + self, + timestep, + present_fill_level: float, + device_state: Optional[S2FrbcDeviceState] = None, + previous_state: Optional["FrbcState"] = None, + actuator_configurations: Optional[ + Dict[str, S2ActuatorConfiguration]] = None, ): - self.device_state = device_state - self.timestep = timestep - self.previous_state = previous_state - self.system_description = timestep.get_system_description() - # TODO: The Java code for s2 contains a status field for storage. - # This is not present in the S2FRBCSystemDescription. - # We should add it to the S2FRBCSystemDescription. - self.fill_level = present_fill_level - self.bucket = 0 - self.timestep_energy = 0.0 - self.sum_squared_distance = 0.0 - self.sum_squared_constraint_violation = 0.0 - self.sum_energy_cost = 0.0 - self.sum_squared_energy = 0.0 - self.selection_reason: Optional[SelectionReason] = None - self.actuator_configurations = actuator_configurations or {} - self.timer_elapse_map = ( - self.get_initial_timer_elapse_map_for_system_description( - self.system_description - ) - ) - - # TODO: Same problem as the Storage message. There is no way to store the status - if previous_state is None: - for a in self.system_description.actuators: - actuator_status = a.status - self.actuator_configurations[a.id] = S2ActuatorConfiguration( - actuator_status.active_operation_mode_id, - actuator_status.operation_mode_factor, + if previous_state: + if device_state: + self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( + device_state) + else: + self.device_state = previous_state.device_state + self.timestep = timestep + self.previous_state = previous_state + self.system_description = timestep.get_system_description() + self.fill_level = present_fill_level + self.bucket = 0 + self.timestep_energy = 0.0 + self.fill_level = previous_state.fill_level + seconds = self.timestep.get_duration_seconds() + for actuator_id, actuator_configuration in actuator_configurations.items(): + om = self.device_state.get_operation_mode( + self.timestep, + actuator_id, + actuator_configuration.get_operation_mode_id(), + ) + self.timestep_energy += ( + self.device_state.get_operation_mode_power( + om, + previous_state.fill_level, + actuator_configuration.get_factor(), + ) * seconds ) + self.fill_level += ( + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.fill_level, + actuator_configuration.get_factor(), + ) * seconds + ) + self.fill_level -= ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) * seconds + ) + self.fill_level += self.timestep.get_forecasted_usage() + self.bucket = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( + self.timestep, self.fill_level + ) + if previous_state.system_description.valid_from == self.system_description.valid_from: + self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() + for actuator_id, actuator_configuration in actuator_configurations.items(): + if isinstance(actuator_id, str): + actuator_id = uuid.UUID(actuator_id) + previous_operation_mode_id = previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + if isinstance(previous_operation_mode_id, str): + previous_operation_mode_id = uuid.UUID(previous_operation_mode_id) + new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if isinstance(new_operation_mode_id, str): + new_operation_mode_id = uuid.UUID(new_operation_mode_id) + if previous_operation_mode_id != new_operation_mode_id: + transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( + self.timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) + for timer_id in transition.start_timers: + duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( + self.timestep, actuator_id, timer_id + ) + new_finished_at = self.timestep.get_start_date() + duration + key = FrbcState.timer_key(actuator_id, timer_id) + self.timer_elapse_map[key] = new_finished_at + else: + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + # calculate scores + target = self.timestep.get_target() + if isinstance(target, TargetProfile.JouleElement): + self.sum_squared_distance = ( + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 + ) + self.sum_energy_cost = previous_state.get_sum_energy_cost() + else: + self.sum_squared_distance = previous_state.get_sum_squared_distance() + self.sum_energy_cost = previous_state.get_sum_energy_cost() + squared_constraint_violation = previous_state.get_sum_squared_constraint_violation() + if self.timestep.get_max_constraint() is not None: + if self.timestep_energy > self.timestep.get_max_constraint(): + squared_constraint_violation += ( + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 + if self.timestep.get_min_constraint() is not None: + if self.timestep_energy < self.timestep.get_min_constraint(): + squared_constraint_violation += ( + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 + self.sum_squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation + ) + self.sum_squared_energy = ( + previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 + ) + + self.selection_reason: Optional[SelectionReason] = None + self.actuator_configurations = actuator_configurations or {} + for k in list(self.get_actuator_configurations().keys()): + if isinstance(k, str): + # Convert strings to UUIDs + self.actuator_configurations[uuid.UUID(k)] = self.actuator_configurations.pop(k) + + self.timestep.add_state(self) else: - self.calculate_state_values(previous_state, self.actuator_configurations) + self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( + device_state) + self.timestep = timestep + self.previous_state = None + self.system_description = timestep.get_system_description() + self.fill_level = present_fill_level + self.bucket = 0 + self.timestep_energy = 0.0 + self.sum_squared_distance = 0.0 + self.sum_squared_constraint_violation = 0.0 + self.sum_energy_cost = 0.0 + self.sum_squared_energy = 0.0 + self.selection_reason: Optional[SelectionReason] = None + self.actuator_configurations = {} + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + for a in self.device_state.get_actuator_statuses(): + actuator_status = a + actuators = self.system_description.actuators + for actuator in actuators: + if actuator.id == a.actuator_id: + self.actuator_configurations[ + a.actuator_id] = S2ActuatorConfiguration( #TODO here was the problem with str and uuid + actuator_status.active_operation_mode_id, + actuator_status.operation_mode_factor, + ) + @staticmethod def get_initial_timer_elapse_map_for_system_description( - system_description: FRBCSystemDescription, - ) -> Dict[str, datetime]: + system_description: FRBCSystemDescription, + ) -> Dict[tuple, datetime]: timer_elapse_map = {} for actuator in system_description.actuators: for timer in actuator.timers: - timer_elapse_map[ - FrbcState.timer_key(str(actuator.id), str(timer.id)) - ] = datetime.min # arbitrary day in the past - # TODO: Add the finished_at time to the timer class? + key = FrbcState.timer_key(actuator.id, timer.id) + timer_elapse_map[key] = datetime.min # arbitrary day in the past return timer_elapse_map def calculate_state_values( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): self.timestep_energy = 0.0 self.fill_level = previous_state.get_fill_level() @@ -92,26 +209,26 @@ def calculate_state_values( actuator_configuration.get_operation_mode_id(), ) self.timestep_energy += ( - self.device_state.get_operation_mode_power( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds + self.device_state.get_operation_mode_power( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds ) self.fill_level += ( - self.device_state.get_operation_mode_fill_rate( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds ) self.fill_level -= ( - s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( - self.timestep, self.fill_level - ) - * seconds + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) + * seconds ) self.fill_level += self.timestep.get_forecasted_usage() self.bucket = ( @@ -124,22 +241,26 @@ def calculate_state_values( self.timestep.add_state(self) def update_timers( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): if ( - previous_state.system_description.get_valid_from() - == self.system_description.get_valid_from() + previous_state.system_description.valid_from + == self.system_description.valid_from ): self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() for actuator_id, actuator_configuration in actuator_configurations.items(): + if isinstance(actuator_id, str): + actuator_id = uuid.UUID(actuator_id) previous_operation_mode_id = ( previous_state.get_actuator_configurations()[ actuator_id ].get_operation_mode_id() ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if isinstance(new_operation_mode_id, str): + new_operation_mode_id = uuid.UUID(new_operation_mode_id) if previous_operation_mode_id != new_operation_mode_id: transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( self.timestep, @@ -154,9 +275,8 @@ def update_timers( self.timestep, actuator_id, timer_id ) new_finished_at = self.timestep.get_start_date() + duration - self.timer_elapse_map[ - FrbcState.timer_key(actuator_id, timer_id) - ] = new_finished_at + key = FrbcState.timer_key(actuator_id, timer_id) + self.timer_elapse_map[key] = new_finished_at else: self.timer_elapse_map = ( self.get_initial_timer_elapse_map_for_system_description( @@ -168,8 +288,8 @@ def calculate_scores(self, previous_state: "FrbcState"): target = self.timestep.get_target() if isinstance(target, TargetProfile.JouleElement): self.sum_squared_distance = ( - previous_state.get_sum_squared_distance() - + (target.get_joules() - self.timestep_energy) ** 2 + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 ) self.sum_energy_cost = previous_state.get_sum_energy_cost() @@ -180,58 +300,72 @@ def calculate_scores(self, previous_state: "FrbcState"): previous_state.get_sum_squared_constraint_violation() ) if ( - self.timestep.get_max_constraint() is not None - and self.timestep_energy > self.timestep.get_max_constraint() + self.timestep.get_max_constraint() is not None + and self.timestep_energy > self.timestep.get_max_constraint() ): squared_constraint_violation += ( - self.timestep_energy - self.timestep.get_max_constraint() - ) ** 2 + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 if ( - self.timestep.get_min_constraint() is not None - and self.timestep_energy < self.timestep.get_min_constraint() + self.timestep.get_min_constraint() is not None + and self.timestep_energy < self.timestep.get_min_constraint() ): squared_constraint_violation += ( - self.timestep.get_min_constraint() - self.timestep_energy - ) ** 2 + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 self.sum_squared_constraint_violation = ( - previous_state.get_sum_squared_constraint_violation() - + squared_constraint_violation + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy**2 + previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 ) @staticmethod - def timer_key(actuator_id: str, timer_id: str) -> str: - return f"{actuator_id}-{timer_id}" + def timer_key(actuator_id: str, timer_id: str) -> tuple: + return (actuator_id, timer_id) def generate_next_timestep_states(self, target_timestep): all_actions = self.device_state.get_all_possible_actuator_configurations( target_timestep ) for action in all_actions: - FrbcState.try_create_next_state(self, target_timestep, action) + self.try_create_next_state(self, target_timestep, action) @staticmethod def try_create_next_state( - previous_state: "FrbcState", - target_timestep, - actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], + previous_state: "FrbcState", + target_timestep, + actuator_configs_for_target_timestep: Dict[ + str, S2ActuatorConfiguration], ): if ( - previous_state.system_description.valid_from - == target_timestep.system_description.valid_from + previous_state.system_description.valid_from + == target_timestep.system_description.valid_from ): for ( - actuator_id, - actuator_configuration, + actuator_id, + actuator_configuration, ) in actuator_configs_for_target_timestep.items(): - previous_operation_mode_id = ( - previous_state.get_actuator_configurations()[ - uuid.UUID(actuator_id) - ].get_operation_mode_id() - ) + if isinstance(actuator_id, str): + actuator_id = uuid.UUID(actuator_id) + + # print all the keys in the previous_state.get_actuator_configurations() + # print(previous_state.get_actuator_configurations().keys()) + try: + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id].get_operation_mode_id() + ) + if isinstance(previous_operation_mode_id, str): + previous_operation_mode_id = uuid.UUID(previous_operation_mode_id) + except KeyError: + raise KeyError( + f"UUID {actuator_id} not found in actuator configurations") + new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if isinstance(new_operation_mode_id, str): + new_operation_mode_id = uuid.UUID(new_operation_mode_id) if previous_operation_mode_id != new_operation_mode_id: transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( target_timestep, @@ -248,43 +382,44 @@ def try_create_next_state( ) ) if ( - timer_is_finished_at - and target_timestep.get_start_date() < timer_is_finished_at + timer_is_finished_at + and timer_is_finished_at.year != 1 + and target_timestep.get_start_date() < timer_is_finished_at.astimezone(target_timestep.get_start_date().tzinfo) ): return False FrbcState( - previous_state.device_state, - target_timestep, - previous_state, - actuator_configs_for_target_timestep, + timestep=target_timestep, + previous_state=previous_state, + actuator_configurations=actuator_configs_for_target_timestep, + present_fill_level=0, ) return True def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: if ( - abs( - self.sum_squared_constraint_violation - - other_state.get_sum_squared_constraint_violation() - ) - >= self.constraint_epsilon + abs( + self.sum_squared_constraint_violation + - other_state.get_sum_squared_constraint_violation() + ) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_constraint_violation - < other_state.get_sum_squared_constraint_violation(), + < other_state.get_sum_squared_constraint_violation(), reason=SelectionReason.CONGESTION_CONSTRAINT, ) elif ( - abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) - >= self.constraint_epsilon + abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_distance - < other_state.get_sum_squared_distance(), + < other_state.get_sum_squared_distance(), reason=SelectionReason.ENERGY_TARGET, ) elif ( - abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) - >= self.tariff_epsilon + abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) + >= self.tariff_epsilon ): return SelectionResult( result=self.sum_energy_cost < other_state.get_sum_energy_cost(), @@ -297,18 +432,18 @@ def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: ) def is_within_fill_level_range(self): - fill_level_range = self.system_description.get_storage().get_fill_level_range() + fill_level_range = self.system_description.storage.fill_level_range return ( - self.fill_level >= fill_level_range.get_start_of_range() - and self.fill_level <= fill_level_range.get_end_of_range() + self.fill_level >= fill_level_range.start_of_range + and self.fill_level <= fill_level_range.end_of_range ) def get_fill_level_distance(self): - fill_level_range = self.system_description.get_storage().get_fill_level_range() - if self.fill_level < fill_level_range.get_start_of_range(): - return fill_level_range.get_start_of_range() - self.fill_level + fill_level_range = self.system_description.storage.fill_level_range + if self.fill_level < fill_level_range.start_of_range: + return fill_level_range.start_of_range - self.fill_level else: - return self.fill_level - fill_level_range.get_end_of_range() + return self.fill_level - fill_level_range.end_of_range def get_device_state(self): return self.device_state @@ -340,7 +475,7 @@ def get_sum_energy_cost(self) -> float: def get_sum_squared_energy(self) -> float: return self.sum_squared_energy - def get_timer_elapse_map(self) -> Dict[str, datetime]: + def get_timer_elapse_map(self) -> Dict[tuple, datetime]: return self.timer_elapse_map def set_selection_reason(self, selection_reason): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index d6e8081..b851914 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -1,5 +1,7 @@ from datetime import datetime, timedelta from typing import List, Optional + +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( NumberRangeWrapper, ) @@ -57,7 +59,7 @@ def set_targets( self.max_constraint = max_constraint def add_state(self, state: FrbcState) -> None: - if state.is_within_fill_level_range(): + if state and state.is_within_fill_level_range(): stored_state = self.state_list[state.get_bucket()] if stored_state is None: self.state_list[state.get_bucket()] = state @@ -98,7 +100,7 @@ def get_duration(self) -> timedelta: def get_duration_seconds(self) -> int: return int(self.duration.total_seconds()) - def get_target(self) -> float: + def get_target(self) -> TargetProfile.JouleElement: return self.target def get_min_constraint(self) -> float: @@ -115,6 +117,9 @@ def get_state_list(self) -> List[Optional[FrbcState]]: def get_final_states(self) -> List[FrbcState]: final_states = [state for state in self.state_list if state is not None] + #print out the position of the states in final_states + for i, state in enumerate(final_states): + print(f"State {i} at position {state.get_bucket()}") if not final_states and self.emergency_state is not None: return [self.emergency_state] return final_states @@ -129,7 +134,7 @@ def get_final_states_within_fill_level_target(self) -> List[FrbcState]: if final_states: return final_states best_state = min( - self.get_final_states(), key=self.get_fill_level_target_distance + self.get_final_states(), key=self.get_fill_level_target_distance ) return [best_state] diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index 2947006..2ae25a1 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -1,5 +1,6 @@ from datetime import datetime, timedelta from typing import List, Optional, Any +from zoneinfo import ZoneInfo from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import ( FrbcTimestep, @@ -8,7 +9,8 @@ S2FrbcDeviceStateWrapper, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import \ + FrbcState from flexmeasures_s2.profile_steering.device_planner.frbc.fill_level_target_util import ( FillLevelTargetUtil, ) @@ -18,8 +20,10 @@ from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( NumberRangeWrapper, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan -from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import \ + S2FrbcPlan +from flexmeasures_s2.profile_steering.common.profile_metadata import \ + ProfileMetadata from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( @@ -29,15 +33,16 @@ SI = UnitRegistry() + # TODO: Add S2FrbcInsightsProfile?->Update 08-02-2025: Not needed for now class OperationModeProfileTree: def __init__( - self, - device_state: S2FrbcDeviceState, - profile_metadata: ProfileMetadata, - plan_due_by_date: datetime, + self, + device_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, ): self.device_state = S2FrbcDeviceStateWrapper(device_state) self.profile_metadata = profile_metadata @@ -52,11 +57,14 @@ def generate_timesteps(self) -> None: time_step_start = self.profile_metadata.get_profile_start() for i in range(self.profile_metadata.get_nr_of_timesteps()): time_step_end = ( - time_step_start + self.profile_metadata.get_timestep_duration() + time_step_start + self.profile_metadata.get_timestep_duration() ) + if i == 0: time_step_start = self.plan_due_by_date - time_step_start_dt = time_step_start + system_default_timezone = time_step_start.astimezone().tzinfo + time_step_start_dt = time_step_start.astimezone( + system_default_timezone) current_system_description = self.get_latest_before( time_step_start_dt, self.device_state.get_system_descriptions(), @@ -90,15 +98,18 @@ def generate_timesteps(self) -> None: current_usage_forecast_profile = None if current_usage_forecast: current_usage_forecast_profile = ( - UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) + UsageForecastUtil.from_storage_usage_profile( + current_usage_forecast) ) + if i == 99: + print("?Caca") usage_forecast = self.get_usage_forecast_for_timestep( current_usage_forecast_profile, time_step_start, time_step_end ) self.timesteps.append( FrbcTimestep( - time_step_start, - time_step_end, + time_step_start.astimezone(system_default_timezone), + time_step_end.astimezone(system_default_timezone), current_system_description, current_leakage_behaviour, fill_level_target, @@ -115,11 +126,12 @@ def get_latest_before(before, select_from, get_date_time): if select_from: for current in select_from: if current: - current_date_time = get_date_time(current).replace(tzinfo=None) + current_date_time = get_date_time(current).replace( + tzinfo=None) before = before.replace(tzinfo=None) if current_date_time <= before and ( - latest_before is None - or current_date_time > latest_before_date_time + latest_before is None + or current_date_time > latest_before_date_time ): latest_before = current latest_before_date_time = current_date_time @@ -127,20 +139,22 @@ def get_latest_before(before, select_from, get_date_time): @staticmethod def get_fill_level_target_for_timestep( - fill_level_target_profile: Optional[Any], - time_step_start: datetime, - time_step_end: datetime, + fill_level_target_profile: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, ) -> Optional[NumberRangeWrapper]: if not fill_level_target_profile: return None time_step_end -= timedelta(milliseconds=1) lower, upper = None, None for e in FillLevelTargetUtil.get_elements_in_range( - fill_level_target_profile, time_step_start, time_step_end + fill_level_target_profile, time_step_start, time_step_end ): - if e.lower_limit is not None and (lower is None or e.lower_limit > lower): + if e.lower_limit is not None and ( + lower is None or e.lower_limit > lower): lower = e.lower_limit - if e.upper_limit is not None and (upper is None or e.upper_limit < upper): + if e.upper_limit is not None and ( + upper is None or e.upper_limit < upper): upper = e.upper_limit if lower is None and upper is None: return None @@ -148,22 +162,21 @@ def get_fill_level_target_for_timestep( @staticmethod def get_usage_forecast_for_timestep( - usage_forecast: Optional[Any], - time_step_start: datetime, - time_step_end: datetime, + usage_forecast: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, ) -> float: if not usage_forecast: return 0 time_step_end -= timedelta(milliseconds=1) usage = 0 - usage = UsageForecastUtil.sub_profile( - usage_forecast, time_step_start, time_step_end - ) + usage = UsageForecastUtil.sub_profile(usage_forecast=usage_forecast, time_step_start=time_step_start, time_step_end=time_step_end) return usage def find_best_plan( - self, target_profile: Any, diff_to_min_profile: Any, diff_to_max_profile: Any + self, target_profile: Any, diff_to_min_profile: Any, + diff_to_max_profile: Any ) -> S2FrbcPlan: for i, ts in enumerate(self.timesteps): ts.clear() @@ -173,14 +186,20 @@ def find_best_plan( diff_to_max_profile.get_elements()[i], ) first_timestep_index = next( - (i for i, ts in enumerate(self.timesteps) if ts.get_system_description()), + (i for i, ts in enumerate(self.timesteps) if + ts.get_system_description()), -1, ) first_timestep = self.timesteps[first_timestep_index] last_timestep = self.timesteps[-1] - state_zero = FrbcState(self.device_state, first_timestep, 0) + state_zero = FrbcState(device_state=self.device_state, + timestep=first_timestep, present_fill_level=0) state_zero.generate_next_timestep_states(first_timestep) + for i in range(first_timestep_index, len(self.timesteps) - 1): + if i == 98: + print(f"Generating next timestep states for timestep {i}") + print(f"Generating next timestep states for timestep {i}") current_timestep = self.timesteps[i] next_timestep = self.timesteps[i + 1] final_states = current_timestep.get_final_states_within_fill_level_target() @@ -200,22 +219,25 @@ def find_best_end_state(states: List[FrbcState]) -> FrbcState: return best_state def convert_to_plan( - self, first_timestep_index_with_state: int, end_state: FrbcState + self, first_timestep_index_with_state: int, end_state: FrbcState ) -> S2FrbcPlan: energy: List[int] = [0] * self.profile_metadata.get_nr_of_timesteps() - fill_level: List[float] = [0.0] * self.profile_metadata.get_nr_of_timesteps() - actuators: List[dict] = [{}] * self.profile_metadata.get_nr_of_timesteps() + fill_level: List[float] = [ + 0.0] * self.profile_metadata.get_nr_of_timesteps() + actuators: List[dict] = [ + {}] * self.profile_metadata.get_nr_of_timesteps() insight_elements = [None] * self.profile_metadata.get_nr_of_timesteps() state_selection_reasons: List[str] = [ - "" - ] * self.profile_metadata.get_nr_of_timesteps() + "" + ] * self.profile_metadata.get_nr_of_timesteps() state = end_state for i in range(self.profile_metadata.get_nr_of_timesteps() - 1, -1, -1): if i >= first_timestep_index_with_state: energy[i] = int(state.get_timestep_energy()) fill_level[i] = state.get_fill_level() actuators[i] = state.get_actuator_configurations() - state_selection_reasons[i] = state.get_selection_reason().abbr # type: ignore + state_selection_reasons[ + i] = state.get_selection_reason() # type: ignore state = state.get_previous_state() else: energy[i] = 0 @@ -223,7 +245,7 @@ def convert_to_plan( actuators[i] = {} insight_elements[i] = None energy[0] += ( - self.device_state.get_energy_in_current_timestep().to(SI.joule).magnitude + self.device_state.get_energy_in_current_timestep().value ) return S2FrbcPlan( False, @@ -233,8 +255,7 @@ def convert_to_plan( energy, ), SoCProfile( - self.profile_metadata.get_profile_start(), - self.profile_metadata.get_timestep_duration(), + self.profile_metadata, fill_level, ), actuators, diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py index e8f6858..cc07baa 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py @@ -1,14 +1,15 @@ +import uuid from typing import Dict, Any # TODO: Should this just be an actuator description class S2ActuatorConfiguration: - def __init__(self, operation_mode_id, factor): + def __init__(self, operation_mode_id: uuid.UUID, factor): self.operation_mode_id = operation_mode_id self.factor = factor - def get_operation_mode_id(self): + def get_operation_mode_id(self) -> uuid.UUID: return self.operation_mode_id def get_factor(self) -> float: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index c06166a..4a69ce2 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -50,7 +50,7 @@ def __init__( ) if self.is_storage_available(self.s2_frbc_state): self.state_tree = OperationModeProfileTree( - S2FrbcDeviceStateWrapper(self.s2_frbc_state), + self.s2_frbc_state, profile_metadata, plan_due_by_date, ) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py index 09bfc7e..333fb14 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py @@ -1,5 +1,5 @@ from datetime import datetime -from typing import List, Optional +from typing import List, Optional, Dict from s2python.common import CommodityQuantity, PowerForecast from s2python.frbc import ( FRBCSystemDescription, @@ -7,7 +7,8 @@ FRBCUsageForecast, FRBCFillLevelTargetProfile, ) -from s2python.generated.gen_s2 import PowerValue +from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus +from s2python.generated.gen_s2 import FRBCStorageStatus, PowerValue class S2FrbcDeviceState: @@ -37,6 +38,8 @@ def __init__( usage_forecasts: List[FRBCUsageForecast], fill_level_target_profiles: List[FRBCFillLevelTargetProfile], computational_parameters: ComputationalParameters, + actuator_statuses: Optional[List[FRBCActuatorStatus]] = None, + storage_status: Optional[List[FRBCStorageStatus]] = None, ): self.device_id = device_id self.device_name = device_name @@ -51,6 +54,8 @@ def __init__( self.usage_forecasts = usage_forecasts self.fill_level_target_profiles = fill_level_target_profiles self.computational_parameters = computational_parameters + self.actuator_statuses = actuator_statuses + self.storage_status = storage_status def get_system_descriptions(self) -> List[FRBCSystemDescription]: return self.system_descriptions @@ -84,3 +89,9 @@ def get_power_forecast(self) -> Optional[PowerForecast]: def get_energy_in_current_timestep(self) -> CommodityQuantity: return self.energy_in_current_timestep + + def get_actuator_statuses(self) -> List[FRBCActuatorStatus]: + return self.actuator_statuses + + def get_storage_status(self) -> List[FRBCStorageStatus]: + return self.storage_status \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index f4003be..77d43c3 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -1,5 +1,6 @@ from datetime import datetime, timedelta from typing import Dict, List, Optional, Any +import uuid from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) @@ -12,14 +13,14 @@ ) from s2python.common.transition import Transition -from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription - +from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription, FRBCActuatorStatus, FRBCStorageStatus +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState class S2FrbcDeviceStateWrapper: epsilon = 1e-4 def __init__(self, device_state): - self.device_state = device_state + self.device_state : S2FrbcDeviceState = device_state self.nr_of_buckets: int = ( device_state.get_computational_parameters().get_nr_of_buckets() ) @@ -88,7 +89,7 @@ def create_actuator_operation_mode_map( return actuator_operation_mode_map def get_operation_mode( - self, target_timestep, actuator_id: str, operation_mode_id: str + self, target_timestep, actuator_id: uuid.UUID, operation_mode_id: str ): from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( FrbcOperationModeWrapper, @@ -110,7 +111,7 @@ def get_operation_mode( return None def operation_mode_uses_factor( - self, target_timestep: FrbcTimestep, actuator_id: str, operation_mode_id: str + self, target_timestep: FrbcTimestep, actuator_id: uuid.UUID, operation_mode_id: str ) -> bool: key = f"{actuator_id}-{operation_mode_id}" if key not in self.operation_mode_uses_factor_map: @@ -122,7 +123,7 @@ def operation_mode_uses_factor( def get_all_possible_actuator_configurations( self, target_timestep: FrbcTimestep - ) -> List[Dict[str, S2ActuatorConfiguration]]: + ) -> List[Dict[Any, S2ActuatorConfiguration]]: timestep_date = target_timestep.get_start_date() if timestep_date not in self.all_actions: possible_actuator_configs = {} @@ -192,24 +193,36 @@ def increase( @staticmethod def get_transition( target_timestep, - actuator_id: str, - from_operation_mode_id: str, - to_operation_mode_id: str, + actuator_id: uuid.UUID, + from_operation_mode_id: uuid.UUID, + to_operation_mode_id: uuid.UUID, ) -> Optional[Transition]: actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( target_timestep, actuator_id ) if actuator_description is None: - raise ValueError( - f"Actuator description not found for actuator {actuator_id}" - ) + return None + # Make sure from_operation_mode_id and to_operation_mode_id are UUIDs + if isinstance(from_operation_mode_id, str): + from_operation_mode_id = uuid.UUID(from_operation_mode_id) + if isinstance(to_operation_mode_id, str): + to_operation_mode_id = uuid.UUID(to_operation_mode_id) + for transition in actuator_description.transitions: + # Make sure transition.from_ and transition.to are UUIDs + if isinstance(transition.from_, str): + transition.from_ = uuid.UUID(transition.from_) + if isinstance(transition.to, str): + transition.to = uuid.UUID(transition.to) if ( - str(transition.from_) == from_operation_mode_id - and str(transition.to) == to_operation_mode_id + transition.from_ == from_operation_mode_id + and transition.to == to_operation_mode_id ): return transition + else: + # print(f"Transition {transition.from_} -> {transition.to} does not match {from_operation_mode_id} -> {to_operation_mode_id}") + pass return None def get_operation_mode_power( @@ -219,14 +232,14 @@ def get_operation_mode_power( element = self.find_operation_mode_element(om, fill_level) power_watt = 0 for power_range in element.get_power_ranges(): - if power_range.get_commodity_quantity() in [ + if power_range.commodity_quantity in [ CommodityQuantity.ELECTRIC_POWER_L1, CommodityQuantity.ELECTRIC_POWER_L2, CommodityQuantity.ELECTRIC_POWER_L3, CommodityQuantity.ELECTRIC_POWER_3_PHASE_SYMMETRIC, ]: - start = power_range.get_start_of_range() - end = power_range.get_end_of_range() + start = power_range.start_of_range + end = power_range.end_of_range power_watt += (end - start) * factor + start return power_watt @@ -268,7 +281,7 @@ def get_leakage_rate(target_timestep: FrbcTimestep, fill_level: float) -> float: else: return S2FrbcDeviceStateWrapper.find_leakage_element( target_timestep, fill_level - ).get_leakage_rate() + ).leakage_rate @staticmethod def find_leakage_element( @@ -278,19 +291,19 @@ def find_leakage_element( element = next( ( e - for e in leakage.get_elements() - if e.get_fill_level_range().get_start_of_range() + for e in leakage.elements + if e.fill_level_range.start_of_range <= fill_level - <= e.get_fill_level_range().get_end_of_range() + <= e.fill_level_range.end_of_range ), None, ) if element is None: - first = leakage.get_elements()[0] - last = leakage.get_elements()[-1] + first = leakage.elements[0] + last = leakage.elements[-1] element = ( first - if fill_level < first.get_fill_level_range().get_start_of_range() + if fill_level < first.fill_level_range.start_of_range else last ) return element @@ -299,15 +312,15 @@ def find_leakage_element( def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: fill_level_lower_limit = ( target_timestep.get_system_description() - .get_storage() - .get_fill_level_range() - .get_start_of_range() + .storage + .fill_level_range + .start_of_range ) fill_level_upper_limit = ( target_timestep.get_system_description() - .get_storage() - .get_fill_level_range() - .get_end_of_range() + .storage + .fill_level_range + .end_of_range ) return int( (fill_level - fill_level_lower_limit) @@ -317,7 +330,7 @@ def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: @staticmethod def get_timer_duration_milliseconds( - target_timestep: FrbcTimestep, actuator_id: str, timer_id: str + target_timestep: FrbcTimestep, actuator_id: uuid.UUID, timer_id: uuid.UUID ) -> int: actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( target_timestep, actuator_id @@ -327,14 +340,15 @@ def get_timer_duration_milliseconds( f"Actuator description not found for actuator {actuator_id}" ) timer = next( - (t for t in actuator_description.get_timers() if t.get_id() == timer_id), + (t for t in actuator_description.timers if t.id == timer_id), None, ) - return timer.get_duration() if timer else 0 + # Return the duration in milliseconds directly + return timer.duration.root if timer else 0 @staticmethod def get_timer_duration( - target_timestep: FrbcTimestep, actuator_id: str, timer_id: str + target_timestep: FrbcTimestep, actuator_id: uuid.UUID, timer_id: uuid.UUID ) -> timedelta: return timedelta( milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( @@ -344,16 +358,24 @@ def get_timer_duration( @staticmethod def get_actuator_description( - target_timestep: FrbcTimestep, actuator_id: str + target_timestep: FrbcTimestep, actuator_id: uuid.UUID ) -> Optional[FRBCActuatorDescription]: return next( ( ad for ad in target_timestep.get_system_description().actuators - if str(ad.id) == actuator_id + if ad.id == actuator_id ), None, ) + + def get_energy_in_current_timestep(self) -> CommodityQuantity: return self.device_state.get_energy_in_current_timestep() + + def get_actuator_statuses(self) -> List[FRBCActuatorStatus]: + return self.device_state.get_actuator_statuses() + + def get_storage_status(self) -> List[FRBCStorageStatus]: + return self.device_state.get_storage_status() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py index 44b4426..69d1c55 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py @@ -1,3 +1,4 @@ +import uuid from typing import Dict, List from datetime import datetime, timedelta from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( @@ -8,7 +9,7 @@ class S2FrbcInstructionProfile: class Element: def __init__( - self, idle: bool, actuator_configuration: Dict[str, S2ActuatorConfiguration] + self, idle: bool, actuator_configuration: Dict[uuid.UUID, S2ActuatorConfiguration] ): self.idle = idle self.actuator_configuration = actuator_configuration @@ -16,7 +17,7 @@ def __init__( def is_idle(self) -> bool: return self.idle - def get_actuator_configuration(self) -> Dict[str, S2ActuatorConfiguration]: + def get_actuator_configuration(self) -> Dict[uuid.UUID, S2ActuatorConfiguration]: return self.actuator_configuration def __init__( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py index 8ce7a04..12fc89d 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py @@ -1,4 +1,5 @@ from typing import List, Dict +import uuid from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) @@ -10,7 +11,7 @@ def __init__( idle: bool, energy, fill_level, - operation_mode_id: List[Dict[str, S2ActuatorConfiguration]], + operation_mode_id: List[Dict[uuid.UUID, S2ActuatorConfiguration]], ): self.idle = idle self.energy = energy @@ -26,5 +27,5 @@ def get_energy(self): def get_fill_level(self): return self.fill_level - def get_operation_mode_id(self) -> List[Dict[str, S2ActuatorConfiguration]]: + def get_operation_mode_id(self) -> List[Dict[uuid.UUID, S2ActuatorConfiguration]]: return self.operation_mode_id diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py index 979defb..09a0dba 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -1,13 +1,14 @@ # TODO: Is this the same as FRBCUsageForecast? -from datetime import timedelta +from datetime import timedelta, timezone +from typing import List class UsageForecastElement: def __init__(self, start, end, usage_rate): - self.start = start - self.end = end + self.start = start.replace(tzinfo=None) + self.end = end.replace(tzinfo=None) self.usage_rate = usage_rate def get_usage(self): @@ -20,9 +21,21 @@ def split(self, date): UsageForecastElement(self.start, date, self.usage_rate), UsageForecastElement(date, self.end, self.usage_rate), ] - return [] + # If the date is not within the range, return the element itself twice to avoid index errors + return [self, self] def date_in_element(self, date): + # Ensure both self.start and self.end are offset-naive or offset-aware + if self.start.tzinfo is None and self.end.tzinfo is None: + # Make date offset-naive + date = date.replace(tzinfo=None) + elif self.start.tzinfo is not None and self.end.tzinfo is not None: + # Make date offset-aware with the same timezone as self.start + date = date.astimezone(self.start.tzinfo) + else: + # If there's a mismatch, raise an error or handle it appropriately + raise ValueError("Mismatch between offset-naive and offset-aware datetimes") + return self.start <= date <= self.end @@ -31,6 +44,7 @@ class UsageForecastUtil: def from_storage_usage_profile(usage_forecast): elements = [] start = usage_forecast.start_time + start = start.astimezone(timezone.utc) for element in usage_forecast.elements: end = start + timedelta(seconds=element.duration.root) elements.append( @@ -39,16 +53,60 @@ def from_storage_usage_profile(usage_forecast): start = end + timedelta(milliseconds=1) return elements - def sub_profile(usage_forecast, timeStepStart, timeStepEnd): + @staticmethod + def sub_profile(usage_forecast: List[UsageForecastElement], time_step_start, time_step_end): if usage_forecast is None: return 0 - timeStepEnd -= timedelta(milliseconds=1) + usage = 0 - timeStepStart = timeStepStart.replace(tzinfo=None) - timeStepEnd = timeStepEnd.replace(tzinfo=None) + time_step_start = time_step_start.replace(tzinfo=None) + time_step_end = time_step_end.replace(tzinfo=None) + for element in usage_forecast: element_start = element.start.replace(tzinfo=None) element_end = element.end.replace(tzinfo=None) - if element_start <= timeStepEnd and element_end >= timeStepStart: + + if element_start < time_step_start < element_end < time_step_end: + # case 1: ....s.....e + # case 1: |-------|.. + split = element.split(time_step_start) + usage += split[1].get_usage() + elif element_start > time_step_start and element_end < time_step_end: + # case 2: s...........e + # case 2: ..|-------|.. usage += element.get_usage() + elif time_step_start < element_start < time_step_end < element_end: + # case 3: s.....e.... + # case 3: ..|-------| + split = element.split(time_step_end) + usage += split[0].get_usage() + elif element_start < time_step_start and element_end > time_step_end: + # case 4: ....s...e.... + # case 4: |-----------| + split1 = element.split(time_step_start) + split2 = split1[1].split(time_step_end) + usage += split2[0].get_usage() + elif element_start == time_step_start and element_end == time_step_end: + # case 5: s...........e + # case 5: |-----------| + usage += element.get_usage() + elif element_start == time_step_start and element_end > time_step_end: + # case 6: s.....e...... + # case 6: |-----------| + split = element.split(time_step_end) + usage += split[0].get_usage() + elif element_start == time_step_start and element_end < time_step_end: + # case 7: s...............e + # case 7: |-----------|.... + usage += element.get_usage() + elif element_start < time_step_start and element_end == time_step_end: + # case 8: ......s.....e + # case 8: |-----------| + split = element.split(time_step_start) + usage += split[1].get_usage() + elif element_start > time_step_start and element_end == time_step_end: + # case 9: s...........e + # case 9: ...|--------| + usage += element.get_usage() + return usage diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index ee5e14b..480344e 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -1,7 +1,7 @@ import pytest from datetime import datetime, timedelta, timezone import uuid - +import logging from s2python.frbc.frbc_actuator_description import FRBCActuatorDescription from s2python.frbc.frbc_fill_level_target_profile_element import ( FRBCFillLevelTargetProfileElement, @@ -22,7 +22,7 @@ from s2python.frbc import FRBCLeakageBehaviour from s2python.frbc import FRBCOperationModeElement from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, FRBCStorageDescription -from s2python.common import PowerRange +from s2python.common import PowerRange, Duration from s2python.common import NumberRange from s2python.common import CommodityQuantity from s2python.common import Transition @@ -31,6 +31,13 @@ from s2python.common import Commodity from joule_profile_example import get_JouleProfileTarget +# Global variables to store IDs for debugging +charge_actuator_id = None +id_on_operation_mode = None +id_off_operation_mode = None +id_on_to_off_timer = None +id_off_to_on_timer = None + def test_connexxion_ev_bus_baseline_byd_225(): # Arrange @@ -51,7 +58,7 @@ def test_connexxion_ev_bus_baseline_byd_225(): final_fill_level_target1 = 100 # Create system description - recharge_system_description1 = create_recharge_system_description( + recharge_system_description1, charge_actuator_status1, storage_status1 = create_recharge_system_description( start_of_recharge=start_of_recharge1, charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, charging_power_kw=charging_power_kw_night, @@ -81,7 +88,7 @@ def test_connexxion_ev_bus_baseline_byd_225(): drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 soc_percentage_before_driving1 = 100 - drive_system_description1 = create_driving_system_description( + drive_system_description1, off_actuator_status1, storage_status1 = create_driving_system_description( start_of_drive1, soc_percentage_before_driving1 ) drive_usage_forecast1 = create_driving_usage_forecast( @@ -93,7 +100,7 @@ def test_connexxion_ev_bus_baseline_byd_225(): soc_percentage_before_charging2 = 37.7463951 final_fill_level_target2 = 94.4825134 - recharge_system_description2 = create_recharge_system_description( + recharge_system_description2, charge_actuator_status2, storage_status2 = create_recharge_system_description( start_of_recharge2, charge_power_soc_percentage_per_second_day, charging_power_kw_day, @@ -137,19 +144,23 @@ def test_connexxion_ev_bus_baseline_byd_225(): recharge_fill_level_target2, ], computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, 20), + actuator_statuses=[off_actuator_status1, charge_actuator_status1, charge_actuator_status2], + storage_status=[storage_status1, storage_status2], ) + epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) target_metadata = ProfileMetadata( - profile_start=omloop_starts_at, + profile_start=epoch_time, timestep_duration=timedelta(seconds=300), nr_of_timesteps=288, ) plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + print("Start") planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) planning = planner.create_initial_planning(plan_due_by_date) - - assert planning == get_JouleProfileTarget() + print(planning.elements) + assert planning.elements == get_JouleProfileTarget() @staticmethod @@ -159,6 +170,7 @@ def create_recharge_system_description( charging_power_kw, soc_percentage_before_charging, ) -> FRBCSystemDescription: + global charge_actuator_id, id_on_operation_mode, id_off_operation_mode, id_on_to_off_timer, id_off_to_on_timer # Create and return a mock system description for recharging on_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), @@ -175,9 +187,10 @@ def create_recharge_system_description( ], ) id_on_operation_mode = str(uuid.uuid4()) + logging.debug(f"id_on_operation_mode: {id_on_operation_mode}") on_operation_mode = FRBCOperationMode( id=id_on_operation_mode, - diagnostic_label="on", + diagnostic_label="charge.on", elements=[on_operation_element], abnormal_condition_only=False, ) @@ -193,28 +206,32 @@ def create_recharge_system_description( ], ) id_off_operation_mode = str(uuid.uuid4()) + logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") off_operation_mode = FRBCOperationMode( id=id_off_operation_mode, - diagnostic_label="off", + diagnostic_label="charge.off", elements=[off_operation_element], abnormal_condition_only=False, ) id_on_to_off_timer = str(uuid.uuid4()) + logging.debug(f"id_on_to_off_timer: {id_on_to_off_timer}") on_to_off_timer = Timer( id=id_on_to_off_timer, diagnostic_label="on.to.off.timer", - duration=int(timedelta(minutes=30).total_seconds()), + duration=Duration(30), ) id_off_to_on_timer = str(uuid.uuid4()) + logging.debug(f"id_off_to_on_timer: {id_off_to_on_timer}") off_to_on_timer = Timer( id=id_off_to_on_timer, diagnostic_label="off.to.on.timer", - duration=int(timedelta(minutes=30).total_seconds()), + duration=Duration(30), ) - + transition_id_from_on_to_off = str(uuid.uuid4()) + logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") transition_from_on_to_off = Transition( - id=str(uuid.uuid4()), + id=transition_id_from_on_to_off, **{"from": id_on_operation_mode}, to=id_off_operation_mode, start_timers=[id_off_to_on_timer], @@ -222,8 +239,10 @@ def create_recharge_system_description( transition_duration=None, abnormal_condition_only=False ) + transition_id_from_off_to_on = str(uuid.uuid4()) + logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") transition_from_off_to_on = Transition( - id=str(uuid.uuid4()), + id=transition_id_from_off_to_on, **{"from": id_off_operation_mode}, to=id_on_operation_mode, start_timers=[id_on_to_off_timer], @@ -232,7 +251,7 @@ def create_recharge_system_description( abnormal_condition_only=False ) charge_actuator_id = str(uuid.uuid4()) - + logging.debug(f"charge_actuator_id: {charge_actuator_id}") charge_actuator_status = FRBCActuatorStatus( message_id=str(uuid.uuid4()), actuator_id=charge_actuator_id, @@ -242,16 +261,16 @@ def create_recharge_system_description( charge_actuator_description = FRBCActuatorDescription( id=charge_actuator_id, - diagnostic_label="charge", + diagnostic_label="charge.actuator", operation_modes=[on_operation_mode, off_operation_mode], transitions=[transition_from_on_to_off, transition_from_off_to_on], timers=[on_to_off_timer, off_to_on_timer], supported_commodities=[Commodity.ELECTRICITY], - status=charge_actuator_status, ) - + storage_status_id = str(uuid.uuid4()) + logging.debug(f"storage_status_id: {storage_status_id}") storage_status = FRBCStorageStatus( - message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_charging + message_id=storage_status_id, present_fill_level=soc_percentage_before_charging ) frbc_storage_description = FRBCStorageDescription( @@ -261,7 +280,6 @@ def create_recharge_system_description( provides_fill_level_target_profile=True, provides_usage_forecast=False, fill_level_range=NumberRange(start_of_range=0, end_of_range=100), - status=storage_status, ) frbc_system_description = FRBCSystemDescription( @@ -271,12 +289,14 @@ def create_recharge_system_description( storage=frbc_storage_description, ) - return frbc_system_description + return frbc_system_description, charge_actuator_status, storage_status def create_recharge_leakage_behaviour(start_of_recharge): + leakage_id = str(uuid.uuid4()) + logging.debug(f"leakage_id: {leakage_id}") return FRBCLeakageBehaviour( - message_id=str(uuid.uuid4()), + message_id=leakage_id, valid_from=start_of_recharge, elements=[ FRBCLeakageBehaviourElement( @@ -291,8 +311,10 @@ def create_recharge_usage_forecast(start_of_recharge, recharge_duration): no_usage = FRBCUsageForecastElement( duration=int(recharge_duration.total_seconds()), usage_rate_expected=0 ) + usage_id = str(uuid.uuid4()) + logging.debug(f"usage_id: {usage_id}") return FRBCUsageForecast( - message_id=str(uuid.uuid4()), start_time=start_of_recharge, elements=[no_usage] + message_id=usage_id, start_time=start_of_recharge, elements=[no_usage] ) @@ -315,8 +337,10 @@ def create_recharge_fill_level_target_profile( start_of_range=final_fill_level_target, end_of_range=100 ), ) + fill_level_id = str(uuid.uuid4()) + logging.debug(f"fill_level_id: {fill_level_id}") return FRBCFillLevelTargetProfile( - message_id=str(uuid.uuid4()), + message_id=fill_level_id, start_time=start_of_recharge, elements=[during_charge, end_of_charge], ) @@ -324,6 +348,7 @@ def create_recharge_fill_level_target_profile( @staticmethod def create_driving_system_description(start_of_drive, soc_percentage_before_driving): + global off_actuator_id, id_off_operation_mode off_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), fill_rate=NumberRange(start_of_range=0, end_of_range=0), @@ -336,6 +361,7 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv ], ) id_off_operation_mode = str(uuid.uuid4()) + logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") off_operation_mode = FRBCOperationMode( id=id_off_operation_mode, diagnostic_label="off", @@ -343,6 +369,7 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv abnormal_condition_only=False, ) off_actuator_id = str(uuid.uuid4()) + logging.debug(f"off_actuator_id: {off_actuator_id}") off_actuator_status = FRBCActuatorStatus( message_id=str(uuid.uuid4()), actuator_id=off_actuator_id, @@ -356,7 +383,6 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv transitions=[], timers=[], supported_commodities=[Commodity.ELECTRICITY], - status=off_actuator_status, ) storage_status = FRBCStorageStatus( message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_driving @@ -368,14 +394,13 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv provides_fill_level_target_profile=True, provides_usage_forecast=False, fill_level_range=NumberRange(start_of_range=0, end_of_range=100), - status=storage_status, ) return FRBCSystemDescription( message_id=str(uuid.uuid4()), valid_from=start_of_drive, actuators=[off_actuator], storage=storage_description, - ) + ), off_actuator_status, storage_status @staticmethod diff --git a/flexmeasures_s2/pytest.ini b/flexmeasures_s2/pytest.ini new file mode 100644 index 0000000..c0511c0 --- /dev/null +++ b/flexmeasures_s2/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +log_cli = true diff --git a/requirements/testi.txt b/requirements/testi.txt new file mode 100644 index 0000000..2e2b688 --- /dev/null +++ b/requirements/testi.txt @@ -0,0 +1,26 @@ +------------------------------- live log call --------------------------------- +DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 40f02a1a-b71f-4b13-b4db-d6615cdc7632 +DEBUG root:test_frbc_device.py:208 id_off_operation_mode: 47084817-e501-40d0-9f81-406fce9032fc +DEBUG root:test_frbc_device.py:217 id_on_to_off_timer: 1feeb7b7-e678-4cc6-8c6f-d41c46d88407 +DEBUG root:test_frbc_device.py:224 id_off_to_on_timer: 94d57718-9476-4d5b-94b5-c76c2255a4e5 +DEBUG root:test_frbc_device.py:231 transition_id_from_on_to_off: 8570120b-48d0-42a3-b42f-985c61c8c349 +DEBUG root:test_frbc_device.py:242 transition_id_from_off_to_on: b9ff11b2-b30b-461c-bb07-614f01028043 +DEBUG root:test_frbc_device.py:253 charge_actuator_id: a789ccf2-421a-401a-bc17-bb3cda046a7c +DEBUG root:test_frbc_device.py:270 storage_status_id: 75c172de-c979-46a0-94fb-bd1094574e76 +DEBUG root:test_frbc_device.py:296 leakage_id: 419d990c-59c6-4730-9d50-d76e2306b473 +DEBUG root:test_frbc_device.py:314 usage_id: 8b2d5a37-99f3-461b-9b27-9cdc4b94579b +DEBUG root:test_frbc_device.py:340 fill_level_id: 31b2b09e-0cc2-43be-8508-c62ac476a73f +DEBUG root:test_frbc_device.py:363 id_off_operation_mode: 4556efd8-7100-4e6a-97a0-a547bafe8635 +DEBUG root:test_frbc_device.py:371 off_actuator_id: 8776272a-b248-4f46-bca9-e1a9ed12c062 +DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 7ad73695-de85-4418-924d-9c8a7978e533 +DEBUG root:test_frbc_device.py:208 id_off_operation_mode: bdfef5ff-92c4-423b-8732-2e69592b69c6 +DEBUG root:test_frbc_device.py:217 id_on_to_off_timer: 0f7715ee-ae0d-4e96-8f0a-7425458f94b7 +DEBUG root:test_frbc_device.py:224 id_off_to_on_timer: ff2a07a4-1ac2-4f26-b6ce-9aecbc881e03 +DEBUG root:test_frbc_device.py:231 transition_id_from_on_to_off: 8291c6da-651d-4b71-9551-05648423a4f5 +DEBUG root:test_frbc_device.py:242 transition_id_from_off_to_on: f00c941b-f841-455e-b5f2-0060fb1471ff +DEBUG root:test_frbc_device.py:253 charge_actuator_id: 3f2b289f-d99c-40f7-bdbb-ac990e862b6b +DEBUG root:test_frbc_device.py:270 storage_status_id: b400ada9-c7ac-474d-ab4c-07d293877eed +DEBUG root:test_frbc_device.py:296 leakage_id: f924bdd5-b86e-49b8-a5a4-17b1ede0a070 +DEBUG root:test_frbc_device.py:314 usage_id: a7dc2f34-ab08-45c3-81bf-5acee9f03f98 +DEBUG root:test_frbc_device.py:340 fill_level_id: 4957ee14-db91-4d2f-a8b6-2c5204123758 +Start \ No newline at end of file From a0ada05707d85b48bd1f76bd4ef4e18de8affc5a Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 24 Feb 2025 16:08:28 +0100 Subject: [PATCH 20/33] The algorithm works Signed-off-by: Vlad Iftime --- .../profile_steering/common/output.txt | 3919 +- .../device_planner/frbc/frbc_state.py | 8 + .../device_planner/frbc/frbc_timestep.py | 9 +- .../frbc/operation_mode_profile_tree.py | 14 +- .../frbc/usage_forecast_util.py | 2 +- .../profile_steering/tests/java_output.txt | 55879 ++++++++++++++ .../tests/test_frbc_device.py | 28 +- flexmeasures_s2/scheduler/test_frbc_device.py | 132 - output.txt | 62996 ++++++++++++++++ 9 files changed, 118917 insertions(+), 4070 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/tests/java_output.txt delete mode 100644 flexmeasures_s2/scheduler/test_frbc_device.py create mode 100644 output.txt diff --git a/flexmeasures_s2/profile_steering/common/output.txt b/flexmeasures_s2/profile_steering/common/output.txt index 572fb68..154a870 100644 --- a/flexmeasures_s2/profile_steering/common/output.txt +++ b/flexmeasures_s2/profile_steering/common/output.txt @@ -1,3915 +1,4 @@ -Generating next timestep states for timestep 12 -State 0 at position 0 -State 1 at position 16 -Generating next timestep states for timestep 13 -Generating next timestep states for timestep 13 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -Generating next timestep states for timestep 14 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -Generating next timestep states for timestep 15 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -Generating next timestep states for timestep 16 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -Generating next timestep states for timestep 17 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -Generating next timestep states for timestep 18 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -Generating next timestep states for timestep 19 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -Generating next timestep states for timestep 20 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -Generating next timestep states for timestep 21 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -Generating next timestep states for timestep 22 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -Generating next timestep states for timestep 23 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -Generating next timestep states for timestep 24 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -Generating next timestep states for timestep 25 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -Generating next timestep states for timestep 26 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -Generating next timestep states for timestep 27 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -Generating next timestep states for timestep 28 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -Generating next timestep states for timestep 29 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -Generating next timestep states for timestep 30 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -Generating next timestep states for timestep 31 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -Generating next timestep states for timestep 32 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -Generating next timestep states for timestep 33 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -Generating next timestep states for timestep 34 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -Generating next timestep states for timestep 35 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -Generating next timestep states for timestep 36 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -Generating next timestep states for timestep 37 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -Generating next timestep states for timestep 38 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -Generating next timestep states for timestep 39 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -Generating next timestep states for timestep 40 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -Generating next timestep states for timestep 41 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -Generating next timestep states for timestep 42 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -Generating next timestep states for timestep 43 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -Generating next timestep states for timestep 44 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -Generating next timestep states for timestep 45 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -Generating next timestep states for timestep 46 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -Generating next timestep states for timestep 47 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -Generating next timestep states for timestep 48 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -Generating next timestep states for timestep 49 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -Generating next timestep states for timestep 50 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -Generating next timestep states for timestep 51 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -Generating next timestep states for timestep 52 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -Generating next timestep states for timestep 53 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -Generating next timestep states for timestep 54 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -Generating next timestep states for timestep 55 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -Generating next timestep states for timestep 56 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -Generating next timestep states for timestep 57 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -Generating next timestep states for timestep 58 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -Generating next timestep states for timestep 59 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -Generating next timestep states for timestep 60 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -Generating next timestep states for timestep 61 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -Generating next timestep states for timestep 62 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -Generating next timestep states for timestep 63 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -Generating next timestep states for timestep 64 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -Generating next timestep states for timestep 65 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -Generating next timestep states for timestep 66 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -Generating next timestep states for timestep 67 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -Generating next timestep states for timestep 68 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -Generating next timestep states for timestep 69 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -Generating next timestep states for timestep 70 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -Generating next timestep states for timestep 71 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -Generating next timestep states for timestep 72 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 73 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 74 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 75 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 76 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 77 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 78 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 79 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 80 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 81 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 82 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 83 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 84 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 85 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 86 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 87 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 88 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 89 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 90 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 91 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 92 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 93 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 94 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 95 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 96 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 97 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 98 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -State 0 at position 0 -State 1 at position 16 -State 2 at position 32 -State 3 at position 48 -State 4 at position 64 -State 5 at position 81 -State 6 at position 97 -State 7 at position 113 -State 8 at position 129 -State 9 at position 145 -State 10 at position 162 -State 11 at position 178 -State 12 at position 194 -State 13 at position 210 -State 14 at position 226 -State 15 at position 243 -State 16 at position 259 -State 17 at position 275 -State 18 at position 291 -State 19 at position 307 -State 20 at position 324 -State 21 at position 340 -State 22 at position 356 -State 23 at position 372 -State 24 at position 388 -State 25 at position 405 -State 26 at position 421 -State 27 at position 437 -State 28 at position 453 -State 29 at position 469 -State 30 at position 486 -State 31 at position 502 -State 32 at position 518 -State 33 at position 534 -State 34 at position 550 -State 35 at position 567 -State 36 at position 583 -State 37 at position 599 -State 38 at position 615 -State 39 at position 631 -State 40 at position 648 -State 41 at position 664 -State 42 at position 680 -State 43 at position 696 -State 44 at position 712 -State 45 at position 729 -State 46 at position 745 -State 47 at position 761 -State 48 at position 777 -State 49 at position 793 -State 50 at position 810 -State 51 at position 826 -State 52 at position 842 -State 53 at position 858 -State 54 at position 875 -State 55 at position 891 -State 56 at position 907 -State 57 at position 923 -State 58 at position 939 -State 59 at position 956 -State 60 at position 972 -State 61 at position 988 -Generating next timestep states for timestep 99 -State 0 at position 988 -Generating next timestep states for timestep 100 -State 0 at position 988 -Generating next timestep states for timestep 101 -State 0 at position 988 -Generating next timestep states for timestep 102 -State 0 at position 988 -Generating next timestep states for timestep 103 -State 0 at position 988 -Generating next timestep states for timestep 104 -State 0 at position 988 -Generating next timestep states for timestep 105 -State 0 at position 988 -Generating next timestep states for timestep 106 -State 0 at position 988 -Generating next timestep states for timestep 107 -State 0 at position 988 -Generating next timestep states for timestep 108 -State 0 at position 988 -Generating next timestep states for timestep 109 -State 0 at position 988 -Generating next timestep states for timestep 110 -State 0 at position 365 -Generating next timestep states for timestep 111 -Generating next timestep states for timestep 112 -Generating next timestep states for timestep 113 -Generating next timestep states for timestep 114 -Generating next timestep states for timestep 115 -Generating next timestep states for timestep 116 -Generating next timestep states for timestep 117 -Generating next timestep states for timestep 118 -Generating next timestep states for timestep 119 -Generating next timestep states for timestep 120 -Generating next timestep states for timestep 121 -Generating next timestep states for timestep 122 -Generating next timestep states for timestep 123 -Generating next timestep states for timestep 124 -Generating next timestep states for timestep 125 -Generating next timestep states for timestep 126 -Generating next timestep states for timestep 127 -Generating next timestep states for timestep 128 -Generating next timestep states for timestep 129 -Generating next timestep states for timestep 130 -Generating next timestep states for timestep 131 -Generating next timestep states for timestep 132 -Generating next timestep states for timestep 133 -Generating next timestep states for timestep 134 -Generating next timestep states for timestep 135 -Generating next timestep states for timestep 136 -Generating next timestep states for timestep 137 -Generating next timestep states for timestep 138 -Generating next timestep states for timestep 139 -Generating next timestep states for timestep 140 -Generating next timestep states for timestep 141 -Generating next timestep states for timestep 142 -Generating next timestep states for timestep 143 -Generating next timestep states for timestep 144 -Generating next timestep states for timestep 145 -Generating next timestep states for timestep 146 -Generating next timestep states for timestep 147 -Generating next timestep states for timestep 148 -Generating next timestep states for timestep 149 -Generating next timestep states for timestep 150 -Generating next timestep states for timestep 151 -Generating next timestep states for timestep 152 -Generating next timestep states for timestep 153 -Generating next timestep states for timestep 154 -Generating next timestep states for timestep 155 -Generating next timestep states for timestep 156 -Generating next timestep states for timestep 157 -Generating next timestep states for timestep 158 -Generating next timestep states for timestep 159 -Generating next timestep states for timestep 160 -Generating next timestep states for timestep 161 -Generating next timestep states for timestep 162 -Generating next timestep states for timestep 163 -Generating next timestep states for timestep 164 -Generating next timestep states for timestep 165 -Generating next timestep states for timestep 166 -Generating next timestep states for timestep 167 -Generating next timestep states for timestep 168 -Generating next timestep states for timestep 169 -Generating next timestep states for timestep 170 -Generating next timestep states for timestep 171 -Generating next timestep states for timestep 172 -Generating next timestep states for timestep 173 -Generating next timestep states for timestep 174 -Generating next timestep states for timestep 175 -Generating next timestep states for timestep 176 -Generating next timestep states for timestep 177 -Generating next timestep states for timestep 178 -Generating next timestep states for timestep 179 -Generating next timestep states for timestep 180 -Generating next timestep states for timestep 181 -Generating next timestep states for timestep 182 -Generating next timestep states for timestep 183 -Generating next timestep states for timestep 184 -Generating next timestep states for timestep 185 -Generating next timestep states for timestep 186 -Generating next timestep states for timestep 187 -Generating next timestep states for timestep 188 -Generating next timestep states for timestep 189 -Generating next timestep states for timestep 190 -Generating next timestep states for timestep 191 -Generating next timestep states for timestep 192 -Generating next timestep states for timestep 193 -Generating next timestep states for timestep 194 -Generating next timestep states for timestep 195 -Generating next timestep states for timestep 196 -Generating next timestep states for timestep 197 -Generating next timestep states for timestep 198 -Generating next timestep states for timestep 199 -Generating next timestep states for timestep 200 -Generating next timestep states for timestep 201 -Generating next timestep states for timestep 202 -Generating next timestep states for timestep 203 -Generating next timestep states for timestep 204 -Generating next timestep states for timestep 205 -Generating next timestep states for timestep 206 -Generating next timestep states for timestep 207 -Generating next timestep states for timestep 208 -Generating next timestep states for timestep 209 -Generating next timestep states for timestep 210 -Generating next timestep states for timestep 211 -Generating next timestep states for timestep 212 -Generating next timestep states for timestep 213 -Generating next timestep states for timestep 214 -Generating next timestep states for timestep 215 -Generating next timestep states for timestep 216 -Generating next timestep states for timestep 217 -Generating next timestep states for timestep 218 -Generating next timestep states for timestep 219 -Generating next timestep states for timestep 220 -Generating next timestep states for timestep 221 -Generating next timestep states for timestep 222 -Generating next timestep states for timestep 223 -Generating next timestep states for timestep 224 -Generating next timestep states for timestep 225 -Generating next timestep states for timestep 226 -Generating next timestep states for timestep 227 -Generating next timestep states for timestep 228 -Generating next timestep states for timestep 229 -Generating next timestep states for timestep 230 -Generating next timestep states for timestep 231 -Generating next timestep states for timestep 232 -Generating next timestep states for timestep 233 -Generating next timestep states for timestep 234 -Generating next timestep states for timestep 235 -Generating next timestep states for timestep 236 -Generating next timestep states for timestep 237 -Generating next timestep states for timestep 238 -Generating next timestep states for timestep 239 -Generating next timestep states for timestep 240 -Generating next timestep states for timestep 241 -Generating next timestep states for timestep 242 -Generating next timestep states for timestep 243 -Generating next timestep states for timestep 244 -Generating next timestep states for timestep 245 -Generating next timestep states for timestep 246 -Generating next timestep states for timestep 247 -Generating next timestep states for timestep 248 -Generating next timestep states for timestep 249 -Generating next timestep states for timestep 250 -Generating next timestep states for timestep 251 -Generating next timestep states for timestep 252 -Generating next timestep states for timestep 253 -Generating next timestep states for timestep 254 -Generating next timestep states for timestep 255 -Generating next timestep states for timestep 256 -Generating next timestep states for timestep 257 -Generating next timestep states for timestep 258 -Generating next timestep states for timestep 259 -Generating next timestep states for timestep 260 -Generating next timestep states for timestep 261 -Generating next timestep states for timestep 262 -Generating next timestep states for timestep 263 -Generating next timestep states for timestep 264 -Generating next timestep states for timestep 265 -Generating next timestep states for timestep 266 -Generating next timestep states for timestep 267 -Generating next timestep states for timestep 268 -Generating next timestep states for timestep 269 -Generating next timestep states for timestep 270 -Generating next timestep states for timestep 271 -Generating next timestep states for timestep 272 -Generating next timestep states for timestep 273 -Generating next timestep states for timestep 274 -Generating next timestep states for timestep 275 -Generating next timestep states for timestep 276 -Generating next timestep states for timestep 277 -Generating next timestep states for timestep 278 -Generating next timestep states for timestep 279 -Generating next timestep states for timestep 280 -Generating next timestep states for timestep 281 -Generating next timestep states for timestep 282 -Generating next timestep states for timestep 283 -Generating next timestep states for timestep 284 -Generating next timestep states for timestep 285 -Generating next timestep states for timestep 286 -FAILED \ No newline at end of file +[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + +[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] +E \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 82e95e0..4ff13a9 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -151,6 +151,14 @@ def __init__( self.actuator_configurations[uuid.UUID(k)] = self.actuator_configurations.pop(k) self.timestep.add_state(self) + print(f">>>>>>>>>>>>>> State added to bucket {self.get_bucket()}") + print(f"Fill level {self.get_fill_level()}") + print(f"Energy {self.get_timestep_energy()}") + print(f"Constraint violation {self.get_sum_squared_constraint_violation()}") + print(f"Sum squared distance {self.get_sum_squared_distance()}") + print(f"Sum energy cost {self.get_sum_energy_cost()}") + print(f"Sum squared energy {self.get_sum_squared_energy()}") + else: self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( device_state) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index b851914..8403ddd 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -47,6 +47,12 @@ def __init__( self.forecasted_fill_level_usage: float = forecasted_fill_level_usage self.state_list: List[Optional[FrbcState]] = [None] * (self.nr_of_buckets + 1) self.emergency_state: Optional[FrbcState] = None + # print timestep start date and end date + # print(f"Timestep start date: {self.start_date}, end date: {self.end_date}") + print(f"Forecasted fill level usage: {self.forecasted_fill_level_usage}") + if self.fill_level_target is not None: + print(f"Fill level start of range: {self.fill_level_target.start_of_range}") + print(f"Fill level end of range: {self.fill_level_target.end_of_range}") def get_nr_of_buckets(self) -> int: return self.nr_of_buckets @@ -118,8 +124,7 @@ def get_state_list(self) -> List[Optional[FrbcState]]: def get_final_states(self) -> List[FrbcState]: final_states = [state for state in self.state_list if state is not None] #print out the position of the states in final_states - for i, state in enumerate(final_states): - print(f"State {i} at position {state.get_bucket()}") + if not final_states and self.emergency_state is not None: return [self.emergency_state] return final_states diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index 2ae25a1..9e32b73 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -59,7 +59,8 @@ def generate_timesteps(self) -> None: time_step_end = ( time_step_start + self.profile_metadata.get_timestep_duration() ) - + if i == 165: + print("CAac") if i == 0: time_step_start = self.plan_due_by_date system_default_timezone = time_step_start.astimezone().tzinfo @@ -101,11 +102,11 @@ def generate_timesteps(self) -> None: UsageForecastUtil.from_storage_usage_profile( current_usage_forecast) ) - if i == 99: - print("?Caca") + usage_forecast = self.get_usage_forecast_for_timestep( current_usage_forecast_profile, time_step_start, time_step_end ) + print(f"Generating timestep {i}") self.timesteps.append( FrbcTimestep( time_step_start.astimezone(system_default_timezone), @@ -194,12 +195,13 @@ def find_best_plan( last_timestep = self.timesteps[-1] state_zero = FrbcState(device_state=self.device_state, timestep=first_timestep, present_fill_level=0) + print(">>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 0") state_zero.generate_next_timestep_states(first_timestep) for i in range(first_timestep_index, len(self.timesteps) - 1): - if i == 98: - print(f"Generating next timestep states for timestep {i}") - print(f"Generating next timestep states for timestep {i}") + # if i == 98: + # print(f"Generating next timestep states for timestep {i}") + print(f">>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep {i}") current_timestep = self.timesteps[i] next_timestep = self.timesteps[i + 1] final_states = current_timestep.get_final_states_within_fill_level_target() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py index 09a0dba..97e0ce8 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -12,7 +12,7 @@ def __init__(self, start, end, usage_rate): self.usage_rate = usage_rate def get_usage(self): - seconds = (self.end - self.start).total_seconds() + 1 + seconds = (self.end - self.start).total_seconds() + 0.001 # one milisecond added for the offeset from total_Seconds() return seconds * self.usage_rate def split(self, date): diff --git a/flexmeasures_s2/profile_steering/tests/java_output.txt b/flexmeasures_s2/profile_steering/tests/java_output.txt new file mode 100644 index 0000000..f64b787 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/java_output.txt @@ -0,0 +1,55879 @@ +Generating timestep 0 +Forecasted fill level usage: 0.0 +Generating timestep 1 +Forecasted fill level usage: 0.0 +Generating timestep 2 +Forecasted fill level usage: 0.0 +Generating timestep 3 +Forecasted fill level usage: 0.0 +Generating timestep 4 +Forecasted fill level usage: 0.0 +Generating timestep 5 +Forecasted fill level usage: 0.0 +Generating timestep 6 +Forecasted fill level usage: 0.0 +Generating timestep 7 +Forecasted fill level usage: 0.0 +Generating timestep 8 +Forecasted fill level usage: 0.0 +Generating timestep 9 +Forecasted fill level usage: 0.0 +Generating timestep 10 +Forecasted fill level usage: 0.0 +Generating timestep 11 +Forecasted fill level usage: 0.0 +Generating timestep 12 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 13 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 14 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 15 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 16 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 17 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 18 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 19 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 20 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 21 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 22 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 23 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 24 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 25 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 26 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 27 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 28 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 29 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 30 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 31 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 32 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 33 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 34 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 35 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 36 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 37 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 38 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 39 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 40 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 41 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 42 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 43 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 44 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 45 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 46 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 47 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 48 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 49 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 50 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 51 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 52 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 53 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 54 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 55 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 56 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 57 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 58 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 59 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 60 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 61 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 62 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 63 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 64 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 65 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 66 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 67 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 68 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 69 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 70 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 71 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 72 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 73 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 74 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 75 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 76 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 77 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 78 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 79 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 80 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 81 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 82 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 83 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 84 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 85 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 86 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 87 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 88 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 89 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 90 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 91 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 92 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 93 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 94 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 95 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 96 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 97 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 98 +Forecasted fill level usage: 0.0 +Fill level start of range: 100.0 +Fill level end of range: 100.0 +Generating timestep 99 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 100 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 101 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 102 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 103 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 104 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 105 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 106 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 107 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 108 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 109 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 110 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 111 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 112 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 113 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 114 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 115 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 116 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 117 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 118 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 119 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 120 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 121 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 122 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 123 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 124 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 125 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 126 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 127 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 128 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 129 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 130 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 131 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 132 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 133 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 134 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 135 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 136 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 137 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 138 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 139 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 140 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 141 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 142 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 143 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 144 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 145 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 146 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 147 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 148 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 149 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 150 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 151 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 152 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 153 +Forecasted fill level usage: -0.9022261579710145 +Generating timestep 154 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 155 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 156 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 157 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 158 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 159 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 160 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 161 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 162 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 163 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 164 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 165 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 166 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 167 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 168 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 169 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 170 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 171 +Forecasted fill level usage: 0.0 +Fill level start of range: 94.4825134 +Fill level end of range: 100.0 +Generating timestep 172 +Forecasted fill level usage: 0.0 +Generating timestep 173 +Forecasted fill level usage: 0.0 +Generating timestep 174 +Forecasted fill level usage: 0.0 +Generating timestep 175 +Forecasted fill level usage: 0.0 +Generating timestep 176 +Forecasted fill level usage: 0.0 +Generating timestep 177 +Forecasted fill level usage: 0.0 +Generating timestep 178 +Forecasted fill level usage: 0.0 +Generating timestep 179 +Forecasted fill level usage: 0.0 +Generating timestep 180 +Forecasted fill level usage: 0.0 +Generating timestep 181 +Forecasted fill level usage: 0.0 +Generating timestep 182 +Forecasted fill level usage: 0.0 +Generating timestep 183 +Forecasted fill level usage: 0.0 +Generating timestep 184 +Forecasted fill level usage: 0.0 +Generating timestep 185 +Forecasted fill level usage: 0.0 +Generating timestep 186 +Forecasted fill level usage: 0.0 +Generating timestep 187 +Forecasted fill level usage: 0.0 +Generating timestep 188 +Forecasted fill level usage: 0.0 +Generating timestep 189 +Forecasted fill level usage: 0.0 +Generating timestep 190 +Forecasted fill level usage: 0.0 +Generating timestep 191 +Forecasted fill level usage: 0.0 +Generating timestep 192 +Forecasted fill level usage: 0.0 +Generating timestep 193 +Forecasted fill level usage: 0.0 +Generating timestep 194 +Forecasted fill level usage: 0.0 +Generating timestep 195 +Forecasted fill level usage: 0.0 +Generating timestep 196 +Forecasted fill level usage: 0.0 +Generating timestep 197 +Forecasted fill level usage: 0.0 +Generating timestep 198 +Forecasted fill level usage: 0.0 +Generating timestep 199 +Forecasted fill level usage: 0.0 +Generating timestep 200 +Forecasted fill level usage: 0.0 +Generating timestep 201 +Forecasted fill level usage: 0.0 +Generating timestep 202 +Forecasted fill level usage: 0.0 +Generating timestep 203 +Forecasted fill level usage: 0.0 +Generating timestep 204 +Forecasted fill level usage: 0.0 +Generating timestep 205 +Forecasted fill level usage: 0.0 +Generating timestep 206 +Forecasted fill level usage: 0.0 +Generating timestep 207 +Forecasted fill level usage: 0.0 +Generating timestep 208 +Forecasted fill level usage: 0.0 +Generating timestep 209 +Forecasted fill level usage: 0.0 +Generating timestep 210 +Forecasted fill level usage: 0.0 +Generating timestep 211 +Forecasted fill level usage: 0.0 +Generating timestep 212 +Forecasted fill level usage: 0.0 +Generating timestep 213 +Forecasted fill level usage: 0.0 +Generating timestep 214 +Forecasted fill level usage: 0.0 +Generating timestep 215 +Forecasted fill level usage: 0.0 +Generating timestep 216 +Forecasted fill level usage: 0.0 +Generating timestep 217 +Forecasted fill level usage: 0.0 +Generating timestep 218 +Forecasted fill level usage: 0.0 +Generating timestep 219 +Forecasted fill level usage: 0.0 +Generating timestep 220 +Forecasted fill level usage: 0.0 +Generating timestep 221 +Forecasted fill level usage: 0.0 +Generating timestep 222 +Forecasted fill level usage: 0.0 +Generating timestep 223 +Forecasted fill level usage: 0.0 +Generating timestep 224 +Forecasted fill level usage: 0.0 +Generating timestep 225 +Forecasted fill level usage: 0.0 +Generating timestep 226 +Forecasted fill level usage: 0.0 +Generating timestep 227 +Forecasted fill level usage: 0.0 +Generating timestep 228 +Forecasted fill level usage: 0.0 +Generating timestep 229 +Forecasted fill level usage: 0.0 +Generating timestep 230 +Forecasted fill level usage: 0.0 +Generating timestep 231 +Forecasted fill level usage: 0.0 +Generating timestep 232 +Forecasted fill level usage: 0.0 +Generating timestep 233 +Forecasted fill level usage: 0.0 +Generating timestep 234 +Forecasted fill level usage: 0.0 +Generating timestep 235 +Forecasted fill level usage: 0.0 +Generating timestep 236 +Forecasted fill level usage: 0.0 +Generating timestep 237 +Forecasted fill level usage: 0.0 +Generating timestep 238 +Forecasted fill level usage: 0.0 +Generating timestep 239 +Forecasted fill level usage: 0.0 +Generating timestep 240 +Forecasted fill level usage: 0.0 +Generating timestep 241 +Forecasted fill level usage: 0.0 +Generating timestep 242 +Forecasted fill level usage: 0.0 +Generating timestep 243 +Forecasted fill level usage: 0.0 +Generating timestep 244 +Forecasted fill level usage: 0.0 +Generating timestep 245 +Forecasted fill level usage: 0.0 +Generating timestep 246 +Forecasted fill level usage: 0.0 +Generating timestep 247 +Forecasted fill level usage: 0.0 +Generating timestep 248 +Forecasted fill level usage: 0.0 +Generating timestep 249 +Forecasted fill level usage: 0.0 +Generating timestep 250 +Forecasted fill level usage: 0.0 +Generating timestep 251 +Forecasted fill level usage: 0.0 +Generating timestep 252 +Forecasted fill level usage: 0.0 +Generating timestep 253 +Forecasted fill level usage: 0.0 +Generating timestep 254 +Forecasted fill level usage: 0.0 +Generating timestep 255 +Forecasted fill level usage: 0.0 +Generating timestep 256 +Forecasted fill level usage: 0.0 +Generating timestep 257 +Forecasted fill level usage: 0.0 +Generating timestep 258 +Forecasted fill level usage: 0.0 +Generating timestep 259 +Forecasted fill level usage: 0.0 +Generating timestep 260 +Forecasted fill level usage: 0.0 +Generating timestep 261 +Forecasted fill level usage: 0.0 +Generating timestep 262 +Forecasted fill level usage: 0.0 +Generating timestep 263 +Forecasted fill level usage: 0.0 +Generating timestep 264 +Forecasted fill level usage: 0.0 +Generating timestep 265 +Forecasted fill level usage: 0.0 +Generating timestep 266 +Forecasted fill level usage: 0.0 +Generating timestep 267 +Forecasted fill level usage: 0.0 +Generating timestep 268 +Forecasted fill level usage: 0.0 +Generating timestep 269 +Forecasted fill level usage: 0.0 +Generating timestep 270 +Forecasted fill level usage: 0.0 +Generating timestep 271 +Forecasted fill level usage: 0.0 +Generating timestep 272 +Forecasted fill level usage: 0.0 +Generating timestep 273 +Forecasted fill level usage: 0.0 +Generating timestep 274 +Forecasted fill level usage: 0.0 +Generating timestep 275 +Forecasted fill level usage: 0.0 +Generating timestep 276 +Forecasted fill level usage: 0.0 +Generating timestep 277 +Forecasted fill level usage: 0.0 +Generating timestep 278 +Forecasted fill level usage: 0.0 +Generating timestep 279 +Forecasted fill level usage: 0.0 +Generating timestep 280 +Forecasted fill level usage: 0.0 +Generating timestep 281 +Forecasted fill level usage: 0.0 +Generating timestep 282 +Forecasted fill level usage: 0.0 +Generating timestep 283 +Forecasted fill level usage: 0.0 +Generating timestep 284 +Forecasted fill level usage: 0.0 +Generating timestep 285 +Forecasted fill level usage: 0.0 +Generating timestep 286 +Forecasted fill level usage: 0.0 +Generating timestep 287 +Forecasted fill level usage: 0.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +Generating next timestep states for timestep 12 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +Generating next timestep states for timestep 13 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +Generating next timestep states for timestep 14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +Generating next timestep states for timestep 15 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +Generating next timestep states for timestep 16 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +Generating next timestep states for timestep 17 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +Generating next timestep states for timestep 18 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +Generating next timestep states for timestep 19 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +Generating next timestep states for timestep 20 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +Generating next timestep states for timestep 21 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +Generating next timestep states for timestep 22 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +Generating next timestep states for timestep 23 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +Generating next timestep states for timestep 24 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +Generating next timestep states for timestep 25 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +Generating next timestep states for timestep 26 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +Generating next timestep states for timestep 27 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +Generating next timestep states for timestep 28 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +Generating next timestep states for timestep 29 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +Generating next timestep states for timestep 30 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +Generating next timestep states for timestep 31 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +Generating next timestep states for timestep 32 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +Generating next timestep states for timestep 33 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +Generating next timestep states for timestep 34 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +Generating next timestep states for timestep 35 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +Generating next timestep states for timestep 36 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +Generating next timestep states for timestep 37 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +Generating next timestep states for timestep 38 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +Generating next timestep states for timestep 39 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +Generating next timestep states for timestep 40 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +Generating next timestep states for timestep 41 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +Generating next timestep states for timestep 42 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +Generating next timestep states for timestep 43 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +Generating next timestep states for timestep 44 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +Generating next timestep states for timestep 45 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +Generating next timestep states for timestep 46 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +Generating next timestep states for timestep 47 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +Generating next timestep states for timestep 48 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +Generating next timestep states for timestep 49 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +Generating next timestep states for timestep 50 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +Generating next timestep states for timestep 51 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +Generating next timestep states for timestep 52 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +Generating next timestep states for timestep 53 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +Generating next timestep states for timestep 54 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +Generating next timestep states for timestep 55 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +Generating next timestep states for timestep 56 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +Generating next timestep states for timestep 57 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +Generating next timestep states for timestep 58 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +Generating next timestep states for timestep 59 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +Generating next timestep states for timestep 60 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +Generating next timestep states for timestep 61 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +Generating next timestep states for timestep 62 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +Generating next timestep states for timestep 63 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +Generating next timestep states for timestep 64 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +Generating next timestep states for timestep 65 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +Generating next timestep states for timestep 66 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +Generating next timestep states for timestep 67 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +Generating next timestep states for timestep 68 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +Generating next timestep states for timestep 69 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +Generating next timestep states for timestep 70 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +Generating next timestep states for timestep 71 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +Generating next timestep states for timestep 72 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 73 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 74 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 75 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 76 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 77 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 78 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 79 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 80 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 81 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 82 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 83 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 84 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 85 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 86 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 87 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 88 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 89 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 90 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 91 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 92 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 93 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 94 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 95 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 96 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 97 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E13 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.9392E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.6448E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.3504E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.056E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.7616E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.4672E14 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.1728E14 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.8784E14 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.0584E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.12896E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.19952E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.27008E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.34064E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.4112E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.48176E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.55232E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.62288E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.69344E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.764E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.83456E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.90512E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.97568E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.04624E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.1168E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.18736E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.25792E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.32848E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.39904E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.4696E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.54016E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.61072E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.68128E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.75184E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.8224E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.89296E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2.96352E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.03408E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.10464E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.1752E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.24576E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.31632E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.38688E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.45744E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.528E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.59856E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.66912E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.73968E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.81024E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.8808E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3.95136E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.02192E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.09248E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.16304E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.2336E15 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.37472E15 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 98 +Generating next timestep states for timestep 98 +>>>>>>>>>>>>>> State added to bucket 977 +Fill level 97.71481597253614 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 99 +>>>>>>>>>>>>>> State added to bucket 965 +Fill level 96.58703327507237 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 100 +>>>>>>>>>>>>>> State added to bucket 954 +Fill level 95.4592505776086 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 101 +>>>>>>>>>>>>>> State added to bucket 943 +Fill level 94.33146788014483 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 102 +>>>>>>>>>>>>>> State added to bucket 932 +Fill level 93.20368518268106 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 103 +>>>>>>>>>>>>>> State added to bucket 920 +Fill level 92.07590248521728 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 104 +>>>>>>>>>>>>>> State added to bucket 909 +Fill level 90.94811978775351 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 105 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.82033709028974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 106 +>>>>>>>>>>>>>> State added to bucket 886 +Fill level 88.69255439282597 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 107 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.5647716953622 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 108 +>>>>>>>>>>>>>> State added to bucket 864 +Fill level 86.43698899789842 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 109 +>>>>>>>>>>>>>> State added to bucket 853 +Fill level 85.30920630043465 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 110 +>>>>>>>>>>>>>> State added to bucket 841 +Fill level 84.18142360297088 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 111 +>>>>>>>>>>>>>> State added to bucket 830 +Fill level 83.05364090550711 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 112 +>>>>>>>>>>>>>> State added to bucket 819 +Fill level 81.92585820804334 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 113 +>>>>>>>>>>>>>> State added to bucket 807 +Fill level 80.79807551057957 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 114 +>>>>>>>>>>>>>> State added to bucket 796 +Fill level 79.6702928131158 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 115 +>>>>>>>>>>>>>> State added to bucket 785 +Fill level 78.54251011565202 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 116 +>>>>>>>>>>>>>> State added to bucket 774 +Fill level 77.41472741818825 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 117 +>>>>>>>>>>>>>> State added to bucket 762 +Fill level 76.28694472072448 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 118 +>>>>>>>>>>>>>> State added to bucket 751 +Fill level 75.1591620232607 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 119 +>>>>>>>>>>>>>> State added to bucket 740 +Fill level 74.03137932579693 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 120 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.90359662833316 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 121 +>>>>>>>>>>>>>> State added to bucket 717 +Fill level 71.77581393086939 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 122 +>>>>>>>>>>>>>> State added to bucket 706 +Fill level 70.64803123340562 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 123 +>>>>>>>>>>>>>> State added to bucket 695 +Fill level 69.52024853594185 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 124 +>>>>>>>>>>>>>> State added to bucket 683 +Fill level 68.39246583847807 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 125 +>>>>>>>>>>>>>> State added to bucket 672 +Fill level 67.2646831410143 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 126 +>>>>>>>>>>>>>> State added to bucket 661 +Fill level 66.13690044355053 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 127 +>>>>>>>>>>>>>> State added to bucket 650 +Fill level 65.00911774608676 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 128 +>>>>>>>>>>>>>> State added to bucket 638 +Fill level 63.881335048622994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 129 +>>>>>>>>>>>>>> State added to bucket 627 +Fill level 62.75355235115923 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 130 +>>>>>>>>>>>>>> State added to bucket 616 +Fill level 61.625769653695464 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 131 +>>>>>>>>>>>>>> State added to bucket 604 +Fill level 60.4979869562317 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 132 +>>>>>>>>>>>>>> State added to bucket 593 +Fill level 59.370204258767934 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 133 +>>>>>>>>>>>>>> State added to bucket 582 +Fill level 58.24242156130417 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 134 +>>>>>>>>>>>>>> State added to bucket 571 +Fill level 57.114638863840405 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 135 +>>>>>>>>>>>>>> State added to bucket 559 +Fill level 55.98685616637664 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 136 +>>>>>>>>>>>>>> State added to bucket 548 +Fill level 54.859073468912875 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 137 +>>>>>>>>>>>>>> State added to bucket 537 +Fill level 53.73129077144911 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 138 +>>>>>>>>>>>>>> State added to bucket 526 +Fill level 52.603508073985346 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 139 +>>>>>>>>>>>>>> State added to bucket 514 +Fill level 51.47572537652158 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 140 +>>>>>>>>>>>>>> State added to bucket 503 +Fill level 50.347942679057816 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 141 +>>>>>>>>>>>>>> State added to bucket 492 +Fill level 49.22015998159405 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 142 +>>>>>>>>>>>>>> State added to bucket 480 +Fill level 48.092377284130286 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 143 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.96459458666652 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 144 +>>>>>>>>>>>>>> State added to bucket 458 +Fill level 45.83681188920276 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 145 +>>>>>>>>>>>>>> State added to bucket 447 +Fill level 44.70902919173899 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 146 +>>>>>>>>>>>>>> State added to bucket 435 +Fill level 43.58124649427523 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 147 +>>>>>>>>>>>>>> State added to bucket 424 +Fill level 42.45346379681146 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 148 +>>>>>>>>>>>>>> State added to bucket 413 +Fill level 41.3256810993477 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 149 +>>>>>>>>>>>>>> State added to bucket 401 +Fill level 40.19789840188393 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 150 +>>>>>>>>>>>>>> State added to bucket 390 +Fill level 39.07011570442017 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 151 +>>>>>>>>>>>>>> State added to bucket 379 +Fill level 37.9423330069564 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 152 +>>>>>>>>>>>>>> State added to bucket 370 +Fill level 37.04010684898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 153 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 370 +Fill level 37.04010684898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.30416E15 +Generating next timestep states for timestep 154 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +Generating next timestep states for timestep 155 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +Generating next timestep states for timestep 156 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +Generating next timestep states for timestep 157 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +Generating next timestep states for timestep 158 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +Generating next timestep states for timestep 159 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +Generating next timestep states for timestep 160 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +Generating next timestep states for timestep 161 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +Generating next timestep states for timestep 162 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +Generating next timestep states for timestep 163 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +Generating next timestep states for timestep 164 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +Generating next timestep states for timestep 165 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +Generating next timestep states for timestep 166 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +Generating next timestep states for timestep 167 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +Generating next timestep states for timestep 168 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.8178883209854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.98272E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +Generating next timestep states for timestep 169 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.8178883209854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.98272E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.1164996629854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.27513E15 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.8178883209854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.98272E15 +Generating next timestep states for timestep 170 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871819098539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.59657E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732953298539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4.88898E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.93594087498539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.18139E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.23455221698539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.4738E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.53316355898539 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5.76621E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.831774900985394 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.05862E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.130386242985395 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.35103E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.428997584985396 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.64344E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.7276089269854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6.93585E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.0262202689854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.22826E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.3248316109854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.52067E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.6234429529854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7.81308E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.9220542949854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.10549E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.2206656369854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.3979E15 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.8178883209854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.98272E15 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.5192769789854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.69031E15 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.1164996629854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.27513E15 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.8178883209854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8.98272E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.1164996629854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.27513E15 +Generating next timestep states for timestep 171 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +Generating next timestep states for timestep 172 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 173 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 174 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 175 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 176 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 177 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 178 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 179 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 180 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 181 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 182 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 183 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 184 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 185 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 186 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 187 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 188 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 189 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 190 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 191 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 192 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 193 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 194 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 195 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 196 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 197 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 198 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 199 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 200 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 201 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 202 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 203 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 204 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 205 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 206 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 207 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 208 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 209 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 210 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 211 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 212 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 213 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 214 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 215 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 216 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 217 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 218 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 219 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 220 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 221 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 222 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 223 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 224 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 225 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 226 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 227 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 228 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 229 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 230 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 231 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 232 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 233 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 234 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 235 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 236 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 237 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 238 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 239 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 240 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 241 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 242 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 243 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 244 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 245 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 246 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 247 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 248 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 249 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 250 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 251 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 252 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 253 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 254 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 255 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 256 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 257 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 258 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 259 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 260 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 261 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 262 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 263 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 264 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 265 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 266 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 267 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 268 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 269 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 270 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 271 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 272 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 273 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 274 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 275 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 276 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 277 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 278 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 279 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 280 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 281 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 282 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 283 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 284 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 285 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +Generating next timestep states for timestep 286 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.4151110049854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.56754E15 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01233368898541 +Energy 1.71E7 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236E16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.7137223469854 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9.85995E15 diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 480344e..f409d27 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -96,7 +96,7 @@ def test_connexxion_ev_bus_baseline_byd_225(): ) start_of_recharge2 = start_of_drive1 + drive_duration1 - recharge_duration2 = timedelta(hours=1, minutes=1) + recharge_duration2 = timedelta(seconds=5360) soc_percentage_before_charging2 = 37.7463951 final_fill_level_target2 = 94.4825134 @@ -187,7 +187,7 @@ def create_recharge_system_description( ], ) id_on_operation_mode = str(uuid.uuid4()) - logging.debug(f"id_on_operation_mode: {id_on_operation_mode}") + # logging.debug(f"id_on_operation_mode: {id_on_operation_mode}") on_operation_mode = FRBCOperationMode( id=id_on_operation_mode, diagnostic_label="charge.on", @@ -206,7 +206,7 @@ def create_recharge_system_description( ], ) id_off_operation_mode = str(uuid.uuid4()) - logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") + # logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") off_operation_mode = FRBCOperationMode( id=id_off_operation_mode, diagnostic_label="charge.off", @@ -215,21 +215,21 @@ def create_recharge_system_description( ) id_on_to_off_timer = str(uuid.uuid4()) - logging.debug(f"id_on_to_off_timer: {id_on_to_off_timer}") + # logging.debug(f"id_on_to_off_timer: {id_on_to_off_timer}") on_to_off_timer = Timer( id=id_on_to_off_timer, diagnostic_label="on.to.off.timer", duration=Duration(30), ) id_off_to_on_timer = str(uuid.uuid4()) - logging.debug(f"id_off_to_on_timer: {id_off_to_on_timer}") + # logging.debug(f"id_off_to_on_timer: {id_off_to_on_timer}") off_to_on_timer = Timer( id=id_off_to_on_timer, diagnostic_label="off.to.on.timer", duration=Duration(30), ) transition_id_from_on_to_off = str(uuid.uuid4()) - logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") + # logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") transition_from_on_to_off = Transition( id=transition_id_from_on_to_off, **{"from": id_on_operation_mode}, @@ -240,7 +240,7 @@ def create_recharge_system_description( abnormal_condition_only=False ) transition_id_from_off_to_on = str(uuid.uuid4()) - logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") + # logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") transition_from_off_to_on = Transition( id=transition_id_from_off_to_on, **{"from": id_off_operation_mode}, @@ -251,7 +251,7 @@ def create_recharge_system_description( abnormal_condition_only=False ) charge_actuator_id = str(uuid.uuid4()) - logging.debug(f"charge_actuator_id: {charge_actuator_id}") + # logging.debug(f"charge_actuator_id: {charge_actuator_id}") charge_actuator_status = FRBCActuatorStatus( message_id=str(uuid.uuid4()), actuator_id=charge_actuator_id, @@ -268,7 +268,7 @@ def create_recharge_system_description( supported_commodities=[Commodity.ELECTRICITY], ) storage_status_id = str(uuid.uuid4()) - logging.debug(f"storage_status_id: {storage_status_id}") + # logging.debug(f"storage_status_id: {storage_status_id}") storage_status = FRBCStorageStatus( message_id=storage_status_id, present_fill_level=soc_percentage_before_charging ) @@ -294,7 +294,7 @@ def create_recharge_system_description( def create_recharge_leakage_behaviour(start_of_recharge): leakage_id = str(uuid.uuid4()) - logging.debug(f"leakage_id: {leakage_id}") + # logging.debug(f"leakage_id: {leakage_id}") return FRBCLeakageBehaviour( message_id=leakage_id, valid_from=start_of_recharge, @@ -312,7 +312,7 @@ def create_recharge_usage_forecast(start_of_recharge, recharge_duration): duration=int(recharge_duration.total_seconds()), usage_rate_expected=0 ) usage_id = str(uuid.uuid4()) - logging.debug(f"usage_id: {usage_id}") + # logging.debug(f"usage_id: {usage_id}") return FRBCUsageForecast( message_id=usage_id, start_time=start_of_recharge, elements=[no_usage] ) @@ -338,7 +338,7 @@ def create_recharge_fill_level_target_profile( ), ) fill_level_id = str(uuid.uuid4()) - logging.debug(f"fill_level_id: {fill_level_id}") + # logging.debug(f"fill_level_id: {fill_level_id}") return FRBCFillLevelTargetProfile( message_id=fill_level_id, start_time=start_of_recharge, @@ -361,7 +361,7 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv ], ) id_off_operation_mode = str(uuid.uuid4()) - logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") + # logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") off_operation_mode = FRBCOperationMode( id=id_off_operation_mode, diagnostic_label="off", @@ -369,7 +369,7 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv abnormal_condition_only=False, ) off_actuator_id = str(uuid.uuid4()) - logging.debug(f"off_actuator_id: {off_actuator_id}") + # logging.debug(f"off_actuator_id: {off_actuator_id}") off_actuator_status = FRBCActuatorStatus( message_id=str(uuid.uuid4()), actuator_id=off_actuator_id, diff --git a/flexmeasures_s2/scheduler/test_frbc_device.py b/flexmeasures_s2/scheduler/test_frbc_device.py deleted file mode 100644 index 5508712..0000000 --- a/flexmeasures_s2/scheduler/test_frbc_device.py +++ /dev/null @@ -1,132 +0,0 @@ -import datetime -import uuid - -from flexmeasures_s2.scheduler.s2_frbc_device_state import S2FrbcDeviceState - -from s2python.frbc import ( - FRBCSystemDescription, - FRBCActuatorDescription, - FRBCOperationMode, - FRBCOperationModeElement, - FRBCStorageDescription, -) - -from s2python.common import ( - Commodity, - Transition, - Timer, - NumberRange, - PowerRange, - CommodityQuantity, -) - - -# Define the test object -test_device_state = S2FrbcDeviceState( - system_descriptions=[ - FRBCSystemDescription( - message_id=str(uuid.uuid4()), - valid_from=datetime.datetime.now(tz=datetime.timezone.utc), - actuators=[ - FRBCActuatorDescription( - id=str(uuid.uuid4()), # Ensure id is a string - diagnostic_label="charge", - supported_commodities=[Commodity.ELECTRICITY], - operation_modes=[ - FRBCOperationMode( - id="charge.on", - diagnostic_label="charge.on", - elements=[ - FRBCOperationModeElement( - fill_level_range=NumberRange( - start_of_range=0.0, - end_of_range=100.0, - ), - fill_rate=NumberRange( - start_of_range=0.0054012349, - end_of_range=0.0054012349, - ), - power_ranges=[ - PowerRange( - start_of_range=28000.0, - end_of_range=28000.0, - commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, - ) - ], - ) - ], - abnormal_condition_only=False, - ), - FRBCOperationMode( - id="charge.off", - diagnostic_label="charge.off", - elements=[ - FRBCOperationModeElement( - fill_level_range=NumberRange( - start_of_range=0, - end_of_range=100, - ), - fill_rate=NumberRange( - start_of_range=0, - end_of_range=0, - ), - power_ranges=[ - PowerRange( - start_of_range=0, - end_of_range=0, - commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, - ) - ], - running_costs=None, - ) - ], - abnormal_condition_only=False, - ), - ], - transitions=[ - Transition( - id="off.to.on", - **{ - "from": "charge.off" - }, # Use a workaround to set 'from' since it's a keyword in Python, - to="charge.on", - start_timers=["on.to.off.timer"], - blocking_timers=["off.to.on.timer"], - abnormal_condition_only=False, - ), - Transition( - id="on.to.off", - **{ - "from": "charge.on" - }, # Use a workaround to set 'from' since it's a keyword in Python, - to="charge.off", - start_timers=["off.to.on.timer"], - blocking_timers=["on.to.off.timer"], - abnormal_condition_only=False, - ), - ], - timers=[ - Timer( - id="on.to.off.timer", - diagnostic_label="on.to.off.timer", - duration=30, - ), - Timer( - id="off.to.on.timer", - diagnostic_label="off.to.on.timer", - duration=30, - ), - ], - ) - ], - storage=FRBCStorageDescription( - diagnostic_label="battery", - fill_level_label="SoC %", - provides_leakage_behaviour=False, - provides_fill_level_target_profile=True, - provides_usage_forecast=False, - fill_level_range=NumberRange(start_of_range=0, end_of_range=100), - ), - ) - ], -) diff --git a/output.txt b/output.txt new file mode 100644 index 0000000..0d4bdbf --- /dev/null +++ b/output.txt @@ -0,0 +1,62996 @@ +Generating timestep 0 +Forecasted fill level usage: 0 +Generating timestep 1 +Forecasted fill level usage: 0 +Generating timestep 2 +Forecasted fill level usage: 0 +Generating timestep 3 +Forecasted fill level usage: 0 +Generating timestep 4 +Forecasted fill level usage: 0 +Generating timestep 5 +Forecasted fill level usage: 0 +Generating timestep 6 +Forecasted fill level usage: 0 +Generating timestep 7 +Forecasted fill level usage: 0 +Generating timestep 8 +Forecasted fill level usage: 0 +Generating timestep 9 +Forecasted fill level usage: 0 +Generating timestep 10 +Forecasted fill level usage: 0 +Generating timestep 11 +Forecasted fill level usage: 0 +Generating timestep 12 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 13 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 14 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 15 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 16 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 17 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 18 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 19 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 20 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 21 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 22 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 23 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 24 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 25 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 26 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 27 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 28 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 29 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 30 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 31 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 32 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 33 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 34 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 35 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 36 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 37 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 38 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 39 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 40 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 41 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 42 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 43 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 44 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 45 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 46 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 47 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 48 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 49 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 50 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 51 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 52 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 53 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 54 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 55 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 56 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 57 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 58 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 59 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 60 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 61 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 62 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 63 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 64 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 65 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 66 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 67 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 68 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 69 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 70 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 71 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 72 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 73 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 74 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 75 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 76 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 77 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 78 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 79 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 80 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 81 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 82 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 83 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 84 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 85 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 86 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 87 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 88 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 89 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 90 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 91 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 92 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 93 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 94 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 95 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 96 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 97 +Forecasted fill level usage: 0.0 +Fill level start of range: 0.0 +Fill level end of range: 100.0 +Generating timestep 98 +Forecasted fill level usage: 0.0 +Fill level start of range: 100.0 +Fill level end of range: 100.0 +CAac +Generating timestep 99 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 100 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 101 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 102 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 103 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 104 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 105 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 106 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 107 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 108 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 109 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 110 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 111 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 112 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 113 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 114 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 115 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 116 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 117 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 118 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 119 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 120 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 121 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 122 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 123 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 124 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 125 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 126 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 127 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 128 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 129 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 130 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 131 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 132 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 133 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 134 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 135 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 136 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 137 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 138 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 139 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 140 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 141 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 142 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 143 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 144 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 145 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 146 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 147 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 148 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 149 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 150 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 151 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 152 +Forecasted fill level usage: -1.1277826974637681 +Generating timestep 153 +Forecasted fill level usage: -0.9022299172466727 +Generating timestep 154 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 155 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 156 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 157 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 158 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 159 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 160 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 161 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 162 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 163 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 164 +Forecasted fill level usage: 0.0 +Fill level start of range: 37.7463951 +Fill level end of range: 100.0 +Generating timestep 165 +Forecasted fill level usage: 0.0 +Fill level start of range: 94.4825134 +Fill level end of range: 100.0 +Generating timestep 166 +Forecasted fill level usage: 0 +Fill level start of range: 94.4825134 +Fill level end of range: 100.0 +Generating timestep 167 +Forecasted fill level usage: 0 +Generating timestep 168 +Forecasted fill level usage: 0 +Generating timestep 169 +Forecasted fill level usage: 0 +Generating timestep 170 +Forecasted fill level usage: 0 +Generating timestep 171 +Forecasted fill level usage: 0 +Generating timestep 172 +Forecasted fill level usage: 0 +Generating timestep 173 +Forecasted fill level usage: 0 +Generating timestep 174 +Forecasted fill level usage: 0 +Generating timestep 175 +Forecasted fill level usage: 0 +Generating timestep 176 +Forecasted fill level usage: 0 +Generating timestep 177 +Forecasted fill level usage: 0 +Generating timestep 178 +Forecasted fill level usage: 0 +Generating timestep 179 +Forecasted fill level usage: 0 +Generating timestep 180 +Forecasted fill level usage: 0 +Generating timestep 181 +Forecasted fill level usage: 0 +Generating timestep 182 +Forecasted fill level usage: 0 +Generating timestep 183 +Forecasted fill level usage: 0 +Generating timestep 184 +Forecasted fill level usage: 0 +Generating timestep 185 +Forecasted fill level usage: 0 +Generating timestep 186 +Forecasted fill level usage: 0 +Generating timestep 187 +Forecasted fill level usage: 0 +Generating timestep 188 +Forecasted fill level usage: 0 +Generating timestep 189 +Forecasted fill level usage: 0 +Generating timestep 190 +Forecasted fill level usage: 0 +Generating timestep 191 +Forecasted fill level usage: 0 +Generating timestep 192 +Forecasted fill level usage: 0 +Generating timestep 193 +Forecasted fill level usage: 0 +Generating timestep 194 +Forecasted fill level usage: 0 +Generating timestep 195 +Forecasted fill level usage: 0 +Generating timestep 196 +Forecasted fill level usage: 0 +Generating timestep 197 +Forecasted fill level usage: 0 +Generating timestep 198 +Forecasted fill level usage: 0 +Generating timestep 199 +Forecasted fill level usage: 0 +Generating timestep 200 +Forecasted fill level usage: 0 +Generating timestep 201 +Forecasted fill level usage: 0 +Generating timestep 202 +Forecasted fill level usage: 0 +Generating timestep 203 +Forecasted fill level usage: 0 +Generating timestep 204 +Forecasted fill level usage: 0 +Generating timestep 205 +Forecasted fill level usage: 0 +Generating timestep 206 +Forecasted fill level usage: 0 +Generating timestep 207 +Forecasted fill level usage: 0 +Generating timestep 208 +Forecasted fill level usage: 0 +Generating timestep 209 +Forecasted fill level usage: 0 +Generating timestep 210 +Forecasted fill level usage: 0 +Generating timestep 211 +Forecasted fill level usage: 0 +Generating timestep 212 +Forecasted fill level usage: 0 +Generating timestep 213 +Forecasted fill level usage: 0 +Generating timestep 214 +Forecasted fill level usage: 0 +Generating timestep 215 +Forecasted fill level usage: 0 +Generating timestep 216 +Forecasted fill level usage: 0 +Generating timestep 217 +Forecasted fill level usage: 0 +Generating timestep 218 +Forecasted fill level usage: 0 +Generating timestep 219 +Forecasted fill level usage: 0 +Generating timestep 220 +Forecasted fill level usage: 0 +Generating timestep 221 +Forecasted fill level usage: 0 +Generating timestep 222 +Forecasted fill level usage: 0 +Generating timestep 223 +Forecasted fill level usage: 0 +Generating timestep 224 +Forecasted fill level usage: 0 +Generating timestep 225 +Forecasted fill level usage: 0 +Generating timestep 226 +Forecasted fill level usage: 0 +Generating timestep 227 +Forecasted fill level usage: 0 +Generating timestep 228 +Forecasted fill level usage: 0 +Generating timestep 229 +Forecasted fill level usage: 0 +Generating timestep 230 +Forecasted fill level usage: 0 +Generating timestep 231 +Forecasted fill level usage: 0 +Generating timestep 232 +Forecasted fill level usage: 0 +Generating timestep 233 +Forecasted fill level usage: 0 +Generating timestep 234 +Forecasted fill level usage: 0 +Generating timestep 235 +Forecasted fill level usage: 0 +Generating timestep 236 +Forecasted fill level usage: 0 +Generating timestep 237 +Forecasted fill level usage: 0 +Generating timestep 238 +Forecasted fill level usage: 0 +Generating timestep 239 +Forecasted fill level usage: 0 +Generating timestep 240 +Forecasted fill level usage: 0 +Generating timestep 241 +Forecasted fill level usage: 0 +Generating timestep 242 +Forecasted fill level usage: 0 +Generating timestep 243 +Forecasted fill level usage: 0 +Generating timestep 244 +Forecasted fill level usage: 0 +Generating timestep 245 +Forecasted fill level usage: 0 +Generating timestep 246 +Forecasted fill level usage: 0 +Generating timestep 247 +Forecasted fill level usage: 0 +Generating timestep 248 +Forecasted fill level usage: 0 +Generating timestep 249 +Forecasted fill level usage: 0 +Generating timestep 250 +Forecasted fill level usage: 0 +Generating timestep 251 +Forecasted fill level usage: 0 +Generating timestep 252 +Forecasted fill level usage: 0 +Generating timestep 253 +Forecasted fill level usage: 0 +Generating timestep 254 +Forecasted fill level usage: 0 +Generating timestep 255 +Forecasted fill level usage: 0 +Generating timestep 256 +Forecasted fill level usage: 0 +Generating timestep 257 +Forecasted fill level usage: 0 +Generating timestep 258 +Forecasted fill level usage: 0 +Generating timestep 259 +Forecasted fill level usage: 0 +Generating timestep 260 +Forecasted fill level usage: 0 +Generating timestep 261 +Forecasted fill level usage: 0 +Generating timestep 262 +Forecasted fill level usage: 0 +Generating timestep 263 +Forecasted fill level usage: 0 +Generating timestep 264 +Forecasted fill level usage: 0 +Generating timestep 265 +Forecasted fill level usage: 0 +Generating timestep 266 +Forecasted fill level usage: 0 +Generating timestep 267 +Forecasted fill level usage: 0 +Generating timestep 268 +Forecasted fill level usage: 0 +Generating timestep 269 +Forecasted fill level usage: 0 +Generating timestep 270 +Forecasted fill level usage: 0 +Generating timestep 271 +Forecasted fill level usage: 0 +Generating timestep 272 +Forecasted fill level usage: 0 +Generating timestep 273 +Forecasted fill level usage: 0 +Generating timestep 274 +Forecasted fill level usage: 0 +Generating timestep 275 +Forecasted fill level usage: 0 +Generating timestep 276 +Forecasted fill level usage: 0 +Generating timestep 277 +Forecasted fill level usage: 0 +Generating timestep 278 +Forecasted fill level usage: 0 +Generating timestep 279 +Forecasted fill level usage: 0 +Generating timestep 280 +Forecasted fill level usage: 0 +Generating timestep 281 +Forecasted fill level usage: 0 +Generating timestep 282 +Forecasted fill level usage: 0 +Generating timestep 283 +Forecasted fill level usage: 0 +Generating timestep 284 +Forecasted fill level usage: 0 +Generating timestep 285 +Forecasted fill level usage: 0 +Generating timestep 286 +Forecasted fill level usage: 0 +Generating timestep 287 +Forecasted fill level usage: 0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 12 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 13 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 14 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 15 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 16 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 17 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 18 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 19 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 20 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 21 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 22 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 23 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 24 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 25 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 26 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 27 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 28 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 29 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 30 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 31 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 32 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 33 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 34 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 35 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 36 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 37 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 38 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 39 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 40 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 41 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 42 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 43 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 44 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 45 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 46 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 47 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 48 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 49 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 50 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 51 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 52 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 53 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 54 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 55 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 56 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 57 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 58 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 59 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 60 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 61 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 62 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 63 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 64 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 65 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 66 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 67 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 68 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 69 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 70 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 71 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 72 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 73 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 74 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 75 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 76 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 77 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 78 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 79 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 80 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 81 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 82 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 83 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 84 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 85 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 86 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 87 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 88 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 89 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 90 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 91 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 92 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 93 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 94 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 95 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 96 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 97 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 0 +Fill level 0.0 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 0.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 16 +Fill level 1.6203704700000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 70560000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 32 +Fill level 3.2407409400000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 141120000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 48 +Fill level 4.86111141 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 211680000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 64 +Fill level 6.4814818800000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 282240000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 81 +Fill level 8.101852350000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 352800000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 97 +Fill level 9.722222820000002 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 423360000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 113 +Fill level 11.342593290000003 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 493920000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 129 +Fill level 12.962963760000004 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 564480000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 145 +Fill level 14.583334230000006 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 635040000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 162 +Fill level 16.203704700000007 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 705600000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 178 +Fill level 17.824075170000008 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 776160000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 194 +Fill level 19.44444564000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 846720000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 210 +Fill level 21.06481611000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 917280000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 226 +Fill level 22.68518658000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 987840000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 243 +Fill level 24.30555705000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1058400000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 259 +Fill level 25.925927520000013 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1128960000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 275 +Fill level 27.546297990000014 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1199520000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 291 +Fill level 29.166668460000015 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1270080000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 307 +Fill level 30.787038930000016 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1340640000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 324 +Fill level 32.40740940000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1411200000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 340 +Fill level 34.02777987000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1481760000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 356 +Fill level 35.64815034000001 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1552320000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 372 +Fill level 37.268520810000005 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1622880000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 388 +Fill level 38.88889128 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1693440000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 405 +Fill level 40.50926175 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1764000000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 421 +Fill level 42.12963222 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1834560000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 437 +Fill level 43.750002689999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1905120000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 453 +Fill level 45.37037315999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1975680000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.99074362999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2046240000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 486 +Fill level 48.61111409999999 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2116800000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.231484569999985 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2187360000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 518 +Fill level 51.85185503999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2257920000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 534 +Fill level 53.47222550999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2328480000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 550 +Fill level 55.09259597999998 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2399040000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 567 +Fill level 56.712966449999975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2469600000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 583 +Fill level 58.33333691999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2540160000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 599 +Fill level 59.95370738999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2610720000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 615 +Fill level 61.57407785999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2681280000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 631 +Fill level 63.194448329999965 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2751840000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 648 +Fill level 64.81481879999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2822400000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 664 +Fill level 66.43518926999997 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2892960000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 680 +Fill level 68.05555973999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 2963520000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 696 +Fill level 69.67593020999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3034080000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 712 +Fill level 71.29630067999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3104640000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.91667114999996 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3175200000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 745 +Fill level 74.53704161999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3245760000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 761 +Fill level 76.15741208999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3316320000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 777 +Fill level 77.77778255999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3386880000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 793 +Fill level 79.39815302999995 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3457440000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 810 +Fill level 81.01852349999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3528000000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 826 +Fill level 82.63889396999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3598560000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 842 +Fill level 84.25926443999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3669120000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 858 +Fill level 85.87963490999994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3739680000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.50000537999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3810240000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 891 +Fill level 89.12037584999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3880800000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 907 +Fill level 90.74074631999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 3951360000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 923 +Fill level 92.36111678999993 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4021920000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 939 +Fill level 93.98148725999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4092480000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 956 +Fill level 95.60185772999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4163040000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>> State added to bucket 972 +Fill level 97.22222819999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4233600000000000.0 +>>>>>>>>>>>>>> State added to bucket 1004 +Fill level 100.46296913999991 +Energy 8400000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4374720000000000.0 +>>>>>>>>>>>>>> State added to bucket 988 +Fill level 98.84259866999992 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 98 +>>>>>>>>>>>>>> State added to bucket 977 +Fill level 97.71481597253614 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 99 +>>>>>>>>>>>>>> State added to bucket 965 +Fill level 96.58703327507237 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 100 +>>>>>>>>>>>>>> State added to bucket 954 +Fill level 95.4592505776086 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 101 +>>>>>>>>>>>>>> State added to bucket 943 +Fill level 94.33146788014483 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 102 +>>>>>>>>>>>>>> State added to bucket 932 +Fill level 93.20368518268106 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 103 +>>>>>>>>>>>>>> State added to bucket 920 +Fill level 92.07590248521728 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 104 +>>>>>>>>>>>>>> State added to bucket 909 +Fill level 90.94811978775351 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 105 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.82033709028974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 106 +>>>>>>>>>>>>>> State added to bucket 886 +Fill level 88.69255439282597 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 107 +>>>>>>>>>>>>>> State added to bucket 875 +Fill level 87.5647716953622 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 108 +>>>>>>>>>>>>>> State added to bucket 864 +Fill level 86.43698899789842 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 109 +>>>>>>>>>>>>>> State added to bucket 853 +Fill level 85.30920630043465 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 110 +>>>>>>>>>>>>>> State added to bucket 841 +Fill level 84.18142360297088 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 111 +>>>>>>>>>>>>>> State added to bucket 830 +Fill level 83.05364090550711 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 112 +>>>>>>>>>>>>>> State added to bucket 819 +Fill level 81.92585820804334 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 113 +>>>>>>>>>>>>>> State added to bucket 807 +Fill level 80.79807551057957 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 114 +>>>>>>>>>>>>>> State added to bucket 796 +Fill level 79.6702928131158 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 115 +>>>>>>>>>>>>>> State added to bucket 785 +Fill level 78.54251011565202 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 116 +>>>>>>>>>>>>>> State added to bucket 774 +Fill level 77.41472741818825 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 117 +>>>>>>>>>>>>>> State added to bucket 762 +Fill level 76.28694472072448 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 118 +>>>>>>>>>>>>>> State added to bucket 751 +Fill level 75.1591620232607 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 119 +>>>>>>>>>>>>>> State added to bucket 740 +Fill level 74.03137932579693 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 120 +>>>>>>>>>>>>>> State added to bucket 729 +Fill level 72.90359662833316 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 121 +>>>>>>>>>>>>>> State added to bucket 717 +Fill level 71.77581393086939 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 122 +>>>>>>>>>>>>>> State added to bucket 706 +Fill level 70.64803123340562 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 123 +>>>>>>>>>>>>>> State added to bucket 695 +Fill level 69.52024853594185 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 124 +>>>>>>>>>>>>>> State added to bucket 683 +Fill level 68.39246583847807 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 125 +>>>>>>>>>>>>>> State added to bucket 672 +Fill level 67.2646831410143 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 126 +>>>>>>>>>>>>>> State added to bucket 661 +Fill level 66.13690044355053 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 127 +>>>>>>>>>>>>>> State added to bucket 650 +Fill level 65.00911774608676 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 128 +>>>>>>>>>>>>>> State added to bucket 638 +Fill level 63.881335048622994 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 129 +>>>>>>>>>>>>>> State added to bucket 627 +Fill level 62.75355235115923 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 130 +>>>>>>>>>>>>>> State added to bucket 616 +Fill level 61.625769653695464 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 131 +>>>>>>>>>>>>>> State added to bucket 604 +Fill level 60.4979869562317 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 132 +>>>>>>>>>>>>>> State added to bucket 593 +Fill level 59.370204258767934 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 133 +>>>>>>>>>>>>>> State added to bucket 582 +Fill level 58.24242156130417 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 134 +>>>>>>>>>>>>>> State added to bucket 571 +Fill level 57.114638863840405 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 135 +>>>>>>>>>>>>>> State added to bucket 559 +Fill level 55.98685616637664 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 136 +>>>>>>>>>>>>>> State added to bucket 548 +Fill level 54.859073468912875 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 137 +>>>>>>>>>>>>>> State added to bucket 537 +Fill level 53.73129077144911 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 138 +>>>>>>>>>>>>>> State added to bucket 526 +Fill level 52.603508073985346 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 139 +>>>>>>>>>>>>>> State added to bucket 514 +Fill level 51.47572537652158 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 140 +>>>>>>>>>>>>>> State added to bucket 503 +Fill level 50.347942679057816 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 141 +>>>>>>>>>>>>>> State added to bucket 492 +Fill level 49.22015998159405 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 142 +>>>>>>>>>>>>>> State added to bucket 480 +Fill level 48.092377284130286 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 143 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.96459458666652 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 144 +>>>>>>>>>>>>>> State added to bucket 458 +Fill level 45.83681188920276 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 145 +>>>>>>>>>>>>>> State added to bucket 447 +Fill level 44.70902919173899 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 146 +>>>>>>>>>>>>>> State added to bucket 435 +Fill level 43.58124649427523 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 147 +>>>>>>>>>>>>>> State added to bucket 424 +Fill level 42.45346379681146 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 148 +>>>>>>>>>>>>>> State added to bucket 413 +Fill level 41.3256810993477 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 149 +>>>>>>>>>>>>>> State added to bucket 401 +Fill level 40.19789840188393 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 150 +>>>>>>>>>>>>>> State added to bucket 390 +Fill level 39.07011570442017 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 151 +>>>>>>>>>>>>>> State added to bucket 379 +Fill level 37.9423330069564 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 152 +>>>>>>>>>>>>>> State added to bucket 370 +Fill level 37.04010308970973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 153 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 370 +Fill level 37.04010308970973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4304160000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 154 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 155 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 156 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 157 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 158 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 159 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 160 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 161 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 162 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.02621650970974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7228260000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 163 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.02621650970974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7228260000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.32482785170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7520670000000000.0 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.02621650970974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7228260000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 164 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 403 +Fill level 40.33871443170973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4596570000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 436 +Fill level 43.63732577370973 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 4888980000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 469 +Fill level 46.935937115709734 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5181390000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 502 +Fill level 50.234548457709735 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5473800000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 535 +Fill level 53.533159799709736 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 5766210000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 568 +Fill level 56.83177114170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6058620000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 601 +Fill level 60.13038248370974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6351030000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>> State added to bucket 634 +Fill level 63.42899382570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6643440000000000.0 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.02621650970974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7228260000000000.0 +>>>>>>>>>>>>>> State added to bucket 667 +Fill level 66.72760516770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 6935850000000000.0 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.32482785170974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7520670000000000.0 +>>>>>>>>>>>>>> State added to bucket 700 +Fill level 70.02621650970974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7228260000000000.0 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.62343919370974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7813080000000000.0 +>>>>>>>>>>>>>> State added to bucket 733 +Fill level 73.32482785170974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7520670000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 165 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 766 +Fill level 76.62343919370974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 7813080000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 166 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 167 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 168 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 169 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 170 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 171 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 172 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 173 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 174 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 175 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 176 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 177 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 178 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 179 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 180 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 181 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 182 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 183 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 184 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 185 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 186 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 187 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 188 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 189 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 190 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 191 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 192 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 193 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 194 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 195 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 196 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 197 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 198 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 199 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 200 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 201 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 202 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 203 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 204 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 205 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 206 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 207 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 208 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 209 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 210 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 211 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 212 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 213 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 214 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 215 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 216 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 217 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 218 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 219 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 220 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 221 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 222 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 223 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 224 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 225 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 226 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 227 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 228 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 229 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 230 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 231 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 232 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 233 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 234 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 235 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 236 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 237 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 238 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 239 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 240 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 241 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 242 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 243 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 244 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 245 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 246 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 247 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 248 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 249 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 250 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 251 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 252 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 253 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 254 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 255 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 256 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 257 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 258 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 259 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 260 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 261 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 262 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 263 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 264 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 265 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 266 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 267 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 268 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 269 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 270 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 271 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 272 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 273 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 274 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 275 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 276 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 277 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 278 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 279 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 280 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 281 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 282 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 283 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 284 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 285 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 286 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 799 +Fill level 79.92205053570974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8105490000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 832 +Fill level 83.22066187770974 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8397900000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 865 +Fill level 86.51927321970975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8690310000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 898 +Fill level 89.81788456170975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 8982720000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 931 +Fill level 93.11649590370975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9275130000000000.0 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 +>>>>>>>>>>>>>> State added to bucket 964 +Fill level 96.41510724570975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9567540000000000.0 +>>>>>>>>>>>>>> State added to bucket 1030 +Fill level 103.01232992970975 +Energy 17100000.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 1.015236e+16 +>>>>>>>>>>>>>> State added to bucket 997 +Fill level 99.71371858770975 +Energy 0.0 +Constraint violation 0.0 +Sum squared distance 0.0 +Sum energy cost 0.0 +Sum squared energy 9859950000000000.0 From 4d2eedb69c47e08f499dc42600e91112b4d2a326 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 24 Feb 2025 16:14:09 +0100 Subject: [PATCH 21/33] Chore:removed prints and files used for debuggin Signed-off-by: Vlad Iftime --- .../device_planner/frbc/frbc_state.py | 7 - .../device_planner/frbc/frbc_timestep.py | 8 +- .../frbc/operation_mode_profile_tree.py | 8 +- .../profile_steering/tests/java_classes.txt | 342 - .../profile_steering/tests/java_output.txt | 55879 -------------- .../tests/test_frbc_device.py | 3 +- output.txt | 62996 ---------------- 7 files changed, 6 insertions(+), 119237 deletions(-) delete mode 100644 flexmeasures_s2/profile_steering/tests/java_classes.txt delete mode 100644 flexmeasures_s2/profile_steering/tests/java_output.txt delete mode 100644 output.txt diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 4ff13a9..0cb918f 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -151,13 +151,6 @@ def __init__( self.actuator_configurations[uuid.UUID(k)] = self.actuator_configurations.pop(k) self.timestep.add_state(self) - print(f">>>>>>>>>>>>>> State added to bucket {self.get_bucket()}") - print(f"Fill level {self.get_fill_level()}") - print(f"Energy {self.get_timestep_energy()}") - print(f"Constraint violation {self.get_sum_squared_constraint_violation()}") - print(f"Sum squared distance {self.get_sum_squared_distance()}") - print(f"Sum energy cost {self.get_sum_energy_cost()}") - print(f"Sum squared energy {self.get_sum_squared_energy()}") else: self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index 8403ddd..81dbcfb 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -49,10 +49,10 @@ def __init__( self.emergency_state: Optional[FrbcState] = None # print timestep start date and end date # print(f"Timestep start date: {self.start_date}, end date: {self.end_date}") - print(f"Forecasted fill level usage: {self.forecasted_fill_level_usage}") - if self.fill_level_target is not None: - print(f"Fill level start of range: {self.fill_level_target.start_of_range}") - print(f"Fill level end of range: {self.fill_level_target.end_of_range}") + # print(f"Forecasted fill level usage: {self.forecasted_fill_level_usage}") + # if self.fill_level_target is not None: + # print(f"Fill level start of range: {self.fill_level_target.start_of_range}") + # print(f"Fill level end of range: {self.fill_level_target.end_of_range}") def get_nr_of_buckets(self) -> int: return self.nr_of_buckets diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index 9e32b73..a4e80da 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -59,8 +59,7 @@ def generate_timesteps(self) -> None: time_step_end = ( time_step_start + self.profile_metadata.get_timestep_duration() ) - if i == 165: - print("CAac") + if i == 0: time_step_start = self.plan_due_by_date system_default_timezone = time_step_start.astimezone().tzinfo @@ -106,7 +105,6 @@ def generate_timesteps(self) -> None: usage_forecast = self.get_usage_forecast_for_timestep( current_usage_forecast_profile, time_step_start, time_step_end ) - print(f"Generating timestep {i}") self.timesteps.append( FrbcTimestep( time_step_start.astimezone(system_default_timezone), @@ -195,13 +193,9 @@ def find_best_plan( last_timestep = self.timesteps[-1] state_zero = FrbcState(device_state=self.device_state, timestep=first_timestep, present_fill_level=0) - print(">>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 0") state_zero.generate_next_timestep_states(first_timestep) for i in range(first_timestep_index, len(self.timesteps) - 1): - # if i == 98: - # print(f"Generating next timestep states for timestep {i}") - print(f">>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep {i}") current_timestep = self.timesteps[i] next_timestep = self.timesteps[i + 1] final_states = current_timestep.get_final_states_within_fill_level_target() diff --git a/flexmeasures_s2/profile_steering/tests/java_classes.txt b/flexmeasures_s2/profile_steering/tests/java_classes.txt deleted file mode 100644 index 36d1995..0000000 --- a/flexmeasures_s2/profile_steering/tests/java_classes.txt +++ /dev/null @@ -1,342 +0,0 @@ - -[class FRBCFillLevelTargetProfile { - startTime: 1970-01-01T02:00+01:00 - elements: [class FRBCFillLevelTargetProfileElement { - duration: 25970 - fillLevelRange: class CommonNumberRange { - startOfRange: 0.0 - endOfRange: 100 - } - }, class FRBCFillLevelTargetProfileElement { - duration: 10 - fillLevelRange: class CommonNumberRange { - startOfRange: 100.0 - endOfRange: 100 - } - }] -}, class FRBCFillLevelTargetProfile { - startTime: 1970-01-01T13:49+01:00 - elements: [class FRBCFillLevelTargetProfileElement { - duration: 5330 - fillLevelRange: class CommonNumberRange { - startOfRange: 37.7463951 - endOfRange: 100 - } - }, class FRBCFillLevelTargetProfileElement { - duration: 10 - fillLevelRange: class CommonNumberRange { - startOfRange: 94.4825134 - endOfRange: 100 - } - }] -}] -true -[class FRBCLeakageBehaviour { - validFrom: 1970-01-01T02:00+01:00 - elements: [class FRBCLeakageBehaviourElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - leakageRate: 0 - }] -}, class FRBCLeakageBehaviour { - validFrom: 1970-01-01T13:49+01:00 - elements: [class FRBCLeakageBehaviourElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - leakageRate: 0 - }] -}] -null -1 -[class FRBCSystemDescription { - validFrom: 1970-01-01T02:00+01:00 - actuators: [class FRBCActuatorDescription { - id: 53638cd8-9349-4fea-b4b0-bb2d305e35b5 - diagnosticLabel: charge - supportedCommodities: [ELECTRICITY] - status: class FRBCActuatorStatus { - activeOperationModeId: charge.on - operationModeFactor: 0 - previousOperationModeId: null - transitionTimestamp: null - } - operationModes: [class FRBCOperationMode { - id: charge.on - diagnosticLabel: charge.on - elements: [class FRBCOperationModeElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - fillRate: class CommonNumberRange { - startOfRange: 0.0054012349 - endOfRange: 0.0054012349 - } - powerRanges: [class CommonPowerRange { - startOfRange: 28000.0 - endOfRange: 28000.0 - commodityQuantity: ELECTRIC.POWER.L1 - }] - runningCosts: null - }] - abnormalConditionOnly: false - }, class FRBCOperationMode { - id: charge.off - diagnosticLabel: charge.off - elements: [class FRBCOperationModeElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - fillRate: class CommonNumberRange { - startOfRange: 0 - endOfRange: 0 - } - powerRanges: [class CommonPowerRange { - startOfRange: 0 - endOfRange: 0 - commodityQuantity: ELECTRIC.POWER.L1 - }] - runningCosts: null - }] - abnormalConditionOnly: false - }] - transitions: [class CommonTransition { - id: off.to.on - from: charge.off - to: charge.on - startTimers: [on.to.off.timer] - blockingTimers: [off.to.on.timer] - transitionCosts: null - transitionDuration: null - abnormalConditionOnly: false - }, class CommonTransition { - id: on.to.off - from: charge.on - to: charge.off - startTimers: [off.to.on.timer] - blockingTimers: [on.to.off.timer] - transitionCosts: null - transitionDuration: null - abnormalConditionOnly: false - }] - timers: [class CommonTimer { - id: on.to.off.timer - diagnosticLabel: on.to.off.timer - duration: 30 - finishedAt: -999999999-01-01T00:00+18:00 - }, class CommonTimer { - id: off.to.on.timer - diagnosticLabel: off.to.on.timer - duration: 30 - finishedAt: -999999999-01-01T00:00+18:00 - }] - }] - storage: class FRBCStorageDescription { - diagnosticLabel: battery - fillLevelLabel: SoC % - providesLeakageBehaviour: false - providesFillLevelTargetProfile: true - providesUsageForecast: false - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - status: class FRBCStorageStatus { - presentFillLevel: 0.0 - } - leakageBehaviour: null - } -}, class FRBCSystemDescription { - validFrom: 1970-01-01T09:13+01:00 - actuators: [class FRBCActuatorDescription { - id: 46d3f329-34df-4826-b65f-4d9433da5392 - diagnosticLabel: off - supportedCommodities: [ELECTRICITY] - status: class FRBCActuatorStatus { - activeOperationModeId: off - operationModeFactor: 0 - previousOperationModeId: null - transitionTimestamp: null - } - operationModes: [class FRBCOperationMode { - id: off - diagnosticLabel: off - elements: [class FRBCOperationModeElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - fillRate: class CommonNumberRange { - startOfRange: 0 - endOfRange: 0 - } - powerRanges: [class CommonPowerRange { - startOfRange: 0 - endOfRange: 0 - commodityQuantity: ELECTRIC.POWER.L1 - }] - runningCosts: null - }] - abnormalConditionOnly: false - }] - transitions: [] - timers: [] - }] - storage: class FRBCStorageDescription { - diagnosticLabel: battery - fillLevelLabel: SoC % - providesLeakageBehaviour: false - providesFillLevelTargetProfile: false - providesUsageForecast: true - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - status: class FRBCStorageStatus { - presentFillLevel: 100.0 - } - leakageBehaviour: null - } -}, class FRBCSystemDescription { - validFrom: 1970-01-01T13:49+01:00 - actuators: [class FRBCActuatorDescription { - id: 63d325e6-0962-42b0-9968-3ae6c2a83cbd - diagnosticLabel: charge - supportedCommodities: [ELECTRICITY] - status: class FRBCActuatorStatus { - activeOperationModeId: charge.on - operationModeFactor: 0 - previousOperationModeId: null - transitionTimestamp: null - } - operationModes: [class FRBCOperationMode { - id: charge.on - diagnosticLabel: charge.on - elements: [class FRBCOperationModeElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - fillRate: class CommonNumberRange { - startOfRange: 0.01099537114 - endOfRange: 0.01099537114 - } - powerRanges: [class CommonPowerRange { - startOfRange: 57000.0 - endOfRange: 57000.0 - commodityQuantity: ELECTRIC.POWER.L1 - }] - runningCosts: null - }] - abnormalConditionOnly: false - }, class FRBCOperationMode { - id: charge.off - diagnosticLabel: charge.off - elements: [class FRBCOperationModeElement { - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - fillRate: class CommonNumberRange { - startOfRange: 0 - endOfRange: 0 - } - powerRanges: [class CommonPowerRange { - startOfRange: 0 - endOfRange: 0 - commodityQuantity: ELECTRIC.POWER.L1 - }] - runningCosts: null - }] - abnormalConditionOnly: false - }] - transitions: [class CommonTransition { - id: off.to.on - from: charge.off - to: charge.on - startTimers: [on.to.off.timer] - blockingTimers: [off.to.on.timer] - transitionCosts: null - transitionDuration: null - abnormalConditionOnly: false - }, class CommonTransition { - id: on.to.off - from: charge.on - to: charge.off - startTimers: [off.to.on.timer] - blockingTimers: [on.to.off.timer] - transitionCosts: null - transitionDuration: null - abnormalConditionOnly: false - }] - timers: [class CommonTimer { - id: on.to.off.timer - diagnosticLabel: on.to.off.timer - duration: 30 - finishedAt: -999999999-01-01T00:00+18:00 - }, class CommonTimer { - id: off.to.on.timer - diagnosticLabel: off.to.on.timer - duration: 30 - finishedAt: -999999999-01-01T00:00+18:00 - }] - }] - storage: class FRBCStorageDescription { - diagnosticLabel: battery - fillLevelLabel: SoC % - providesLeakageBehaviour: false - providesFillLevelTargetProfile: true - providesUsageForecast: false - fillLevelRange: class CommonNumberRange { - startOfRange: 0 - endOfRange: 100 - } - status: class FRBCStorageStatus { - presentFillLevel: 37.7463951 - } - leakageBehaviour: null - } -}] -1970-01-01T01:00:00Z -[class FRBCUsageForecast { - startTime: 1970-01-01T02:00+01:00 - elements: [class FRBCUsageForecastElement { - duration: 25980 - usageRateUpperLimit: 0 - usageRateUpper95PPR: 0 - usageRateUpper68PPR: 0 - usageRateExpected: 0 - usageRateLower68PPR: 0 - usageRateLower95PPR: 0 - usageRateLowerLimit: 0 - }] -}, class FRBCUsageForecast { - startTime: 1970-01-01T09:13+01:00 - elements: [class FRBCUsageForecastElement { - duration: 16560 - usageRateUpperLimit: null - usageRateUpper95PPR: null - usageRateUpper68PPR: null - usageRateExpected: -0.0037592756582125603 - usageRateLower68PPR: null - usageRateLower95PPR: null - usageRateLowerLimit: null - }] -}, class FRBCUsageForecast { - startTime: 1970-01-01T13:49+01:00 - elements: [class FRBCUsageForecastElement { - duration: 5340 - usageRateUpperLimit: 0 - usageRateUpper95PPR: 0 - usageRateUpper68PPR: 0 - usageRateExpected: 0 - usageRateLower68PPR: 0 - usageRateLower95PPR: 0 - usageRateLowerLimit: 0 - }] -}] diff --git a/flexmeasures_s2/profile_steering/tests/java_output.txt b/flexmeasures_s2/profile_steering/tests/java_output.txt deleted file mode 100644 index f64b787..0000000 --- a/flexmeasures_s2/profile_steering/tests/java_output.txt +++ /dev/null @@ -1,55879 +0,0 @@ -Generating timestep 0 -Forecasted fill level usage: 0.0 -Generating timestep 1 -Forecasted fill level usage: 0.0 -Generating timestep 2 -Forecasted fill level usage: 0.0 -Generating timestep 3 -Forecasted fill level usage: 0.0 -Generating timestep 4 -Forecasted fill level usage: 0.0 -Generating timestep 5 -Forecasted fill level usage: 0.0 -Generating timestep 6 -Forecasted fill level usage: 0.0 -Generating timestep 7 -Forecasted fill level usage: 0.0 -Generating timestep 8 -Forecasted fill level usage: 0.0 -Generating timestep 9 -Forecasted fill level usage: 0.0 -Generating timestep 10 -Forecasted fill level usage: 0.0 -Generating timestep 11 -Forecasted fill level usage: 0.0 -Generating timestep 12 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 13 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 14 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 15 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 16 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 17 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 18 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 19 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 20 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 21 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 22 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 23 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 24 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 25 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 26 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 27 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 28 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 29 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 30 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 31 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 32 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 33 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 34 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 35 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 36 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 37 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 38 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 39 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 40 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 41 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 42 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 43 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 44 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 45 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 46 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 47 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 48 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 49 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 50 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 51 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 52 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 53 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 54 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 55 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 56 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 57 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 58 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 59 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 60 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 61 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 62 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 63 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 64 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 65 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 66 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 67 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 68 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 69 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 70 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 71 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 72 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 73 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 74 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 75 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 76 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 77 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 78 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 79 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 80 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 81 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 82 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 83 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 84 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 85 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 86 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 87 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 88 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 89 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 90 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 91 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 92 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 93 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 94 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 95 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 96 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 97 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 98 -Forecasted fill level usage: 0.0 -Fill level start of range: 100.0 -Fill level end of range: 100.0 -Generating timestep 99 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 100 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 101 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 102 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 103 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 104 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 105 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 106 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 107 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 108 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 109 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 110 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 111 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 112 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 113 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 114 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 115 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 116 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 117 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 118 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 119 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 120 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 121 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 122 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 123 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 124 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 125 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 126 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 127 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 128 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 129 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 130 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 131 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 132 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 133 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 134 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 135 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 136 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 137 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 138 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 139 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 140 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 141 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 142 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 143 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 144 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 145 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 146 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 147 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 148 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 149 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 150 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 151 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 152 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 153 -Forecasted fill level usage: -0.9022261579710145 -Generating timestep 154 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 155 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 156 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 157 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 158 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 159 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 160 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 161 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 162 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 163 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 164 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 165 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 166 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 167 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 168 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 169 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 170 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 171 -Forecasted fill level usage: 0.0 -Fill level start of range: 94.4825134 -Fill level end of range: 100.0 -Generating timestep 172 -Forecasted fill level usage: 0.0 -Generating timestep 173 -Forecasted fill level usage: 0.0 -Generating timestep 174 -Forecasted fill level usage: 0.0 -Generating timestep 175 -Forecasted fill level usage: 0.0 -Generating timestep 176 -Forecasted fill level usage: 0.0 -Generating timestep 177 -Forecasted fill level usage: 0.0 -Generating timestep 178 -Forecasted fill level usage: 0.0 -Generating timestep 179 -Forecasted fill level usage: 0.0 -Generating timestep 180 -Forecasted fill level usage: 0.0 -Generating timestep 181 -Forecasted fill level usage: 0.0 -Generating timestep 182 -Forecasted fill level usage: 0.0 -Generating timestep 183 -Forecasted fill level usage: 0.0 -Generating timestep 184 -Forecasted fill level usage: 0.0 -Generating timestep 185 -Forecasted fill level usage: 0.0 -Generating timestep 186 -Forecasted fill level usage: 0.0 -Generating timestep 187 -Forecasted fill level usage: 0.0 -Generating timestep 188 -Forecasted fill level usage: 0.0 -Generating timestep 189 -Forecasted fill level usage: 0.0 -Generating timestep 190 -Forecasted fill level usage: 0.0 -Generating timestep 191 -Forecasted fill level usage: 0.0 -Generating timestep 192 -Forecasted fill level usage: 0.0 -Generating timestep 193 -Forecasted fill level usage: 0.0 -Generating timestep 194 -Forecasted fill level usage: 0.0 -Generating timestep 195 -Forecasted fill level usage: 0.0 -Generating timestep 196 -Forecasted fill level usage: 0.0 -Generating timestep 197 -Forecasted fill level usage: 0.0 -Generating timestep 198 -Forecasted fill level usage: 0.0 -Generating timestep 199 -Forecasted fill level usage: 0.0 -Generating timestep 200 -Forecasted fill level usage: 0.0 -Generating timestep 201 -Forecasted fill level usage: 0.0 -Generating timestep 202 -Forecasted fill level usage: 0.0 -Generating timestep 203 -Forecasted fill level usage: 0.0 -Generating timestep 204 -Forecasted fill level usage: 0.0 -Generating timestep 205 -Forecasted fill level usage: 0.0 -Generating timestep 206 -Forecasted fill level usage: 0.0 -Generating timestep 207 -Forecasted fill level usage: 0.0 -Generating timestep 208 -Forecasted fill level usage: 0.0 -Generating timestep 209 -Forecasted fill level usage: 0.0 -Generating timestep 210 -Forecasted fill level usage: 0.0 -Generating timestep 211 -Forecasted fill level usage: 0.0 -Generating timestep 212 -Forecasted fill level usage: 0.0 -Generating timestep 213 -Forecasted fill level usage: 0.0 -Generating timestep 214 -Forecasted fill level usage: 0.0 -Generating timestep 215 -Forecasted fill level usage: 0.0 -Generating timestep 216 -Forecasted fill level usage: 0.0 -Generating timestep 217 -Forecasted fill level usage: 0.0 -Generating timestep 218 -Forecasted fill level usage: 0.0 -Generating timestep 219 -Forecasted fill level usage: 0.0 -Generating timestep 220 -Forecasted fill level usage: 0.0 -Generating timestep 221 -Forecasted fill level usage: 0.0 -Generating timestep 222 -Forecasted fill level usage: 0.0 -Generating timestep 223 -Forecasted fill level usage: 0.0 -Generating timestep 224 -Forecasted fill level usage: 0.0 -Generating timestep 225 -Forecasted fill level usage: 0.0 -Generating timestep 226 -Forecasted fill level usage: 0.0 -Generating timestep 227 -Forecasted fill level usage: 0.0 -Generating timestep 228 -Forecasted fill level usage: 0.0 -Generating timestep 229 -Forecasted fill level usage: 0.0 -Generating timestep 230 -Forecasted fill level usage: 0.0 -Generating timestep 231 -Forecasted fill level usage: 0.0 -Generating timestep 232 -Forecasted fill level usage: 0.0 -Generating timestep 233 -Forecasted fill level usage: 0.0 -Generating timestep 234 -Forecasted fill level usage: 0.0 -Generating timestep 235 -Forecasted fill level usage: 0.0 -Generating timestep 236 -Forecasted fill level usage: 0.0 -Generating timestep 237 -Forecasted fill level usage: 0.0 -Generating timestep 238 -Forecasted fill level usage: 0.0 -Generating timestep 239 -Forecasted fill level usage: 0.0 -Generating timestep 240 -Forecasted fill level usage: 0.0 -Generating timestep 241 -Forecasted fill level usage: 0.0 -Generating timestep 242 -Forecasted fill level usage: 0.0 -Generating timestep 243 -Forecasted fill level usage: 0.0 -Generating timestep 244 -Forecasted fill level usage: 0.0 -Generating timestep 245 -Forecasted fill level usage: 0.0 -Generating timestep 246 -Forecasted fill level usage: 0.0 -Generating timestep 247 -Forecasted fill level usage: 0.0 -Generating timestep 248 -Forecasted fill level usage: 0.0 -Generating timestep 249 -Forecasted fill level usage: 0.0 -Generating timestep 250 -Forecasted fill level usage: 0.0 -Generating timestep 251 -Forecasted fill level usage: 0.0 -Generating timestep 252 -Forecasted fill level usage: 0.0 -Generating timestep 253 -Forecasted fill level usage: 0.0 -Generating timestep 254 -Forecasted fill level usage: 0.0 -Generating timestep 255 -Forecasted fill level usage: 0.0 -Generating timestep 256 -Forecasted fill level usage: 0.0 -Generating timestep 257 -Forecasted fill level usage: 0.0 -Generating timestep 258 -Forecasted fill level usage: 0.0 -Generating timestep 259 -Forecasted fill level usage: 0.0 -Generating timestep 260 -Forecasted fill level usage: 0.0 -Generating timestep 261 -Forecasted fill level usage: 0.0 -Generating timestep 262 -Forecasted fill level usage: 0.0 -Generating timestep 263 -Forecasted fill level usage: 0.0 -Generating timestep 264 -Forecasted fill level usage: 0.0 -Generating timestep 265 -Forecasted fill level usage: 0.0 -Generating timestep 266 -Forecasted fill level usage: 0.0 -Generating timestep 267 -Forecasted fill level usage: 0.0 -Generating timestep 268 -Forecasted fill level usage: 0.0 -Generating timestep 269 -Forecasted fill level usage: 0.0 -Generating timestep 270 -Forecasted fill level usage: 0.0 -Generating timestep 271 -Forecasted fill level usage: 0.0 -Generating timestep 272 -Forecasted fill level usage: 0.0 -Generating timestep 273 -Forecasted fill level usage: 0.0 -Generating timestep 274 -Forecasted fill level usage: 0.0 -Generating timestep 275 -Forecasted fill level usage: 0.0 -Generating timestep 276 -Forecasted fill level usage: 0.0 -Generating timestep 277 -Forecasted fill level usage: 0.0 -Generating timestep 278 -Forecasted fill level usage: 0.0 -Generating timestep 279 -Forecasted fill level usage: 0.0 -Generating timestep 280 -Forecasted fill level usage: 0.0 -Generating timestep 281 -Forecasted fill level usage: 0.0 -Generating timestep 282 -Forecasted fill level usage: 0.0 -Generating timestep 283 -Forecasted fill level usage: 0.0 -Generating timestep 284 -Forecasted fill level usage: 0.0 -Generating timestep 285 -Forecasted fill level usage: 0.0 -Generating timestep 286 -Forecasted fill level usage: 0.0 -Generating timestep 287 -Forecasted fill level usage: 0.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 -Generating next timestep states for timestep 12 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 -Generating next timestep states for timestep 13 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 -Generating next timestep states for timestep 14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 -Generating next timestep states for timestep 15 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 -Generating next timestep states for timestep 16 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 -Generating next timestep states for timestep 17 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 -Generating next timestep states for timestep 18 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 -Generating next timestep states for timestep 19 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 -Generating next timestep states for timestep 20 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 -Generating next timestep states for timestep 21 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 -Generating next timestep states for timestep 22 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 -Generating next timestep states for timestep 23 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 -Generating next timestep states for timestep 24 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 -Generating next timestep states for timestep 25 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 -Generating next timestep states for timestep 26 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 -Generating next timestep states for timestep 27 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 -Generating next timestep states for timestep 28 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 -Generating next timestep states for timestep 29 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 -Generating next timestep states for timestep 30 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 -Generating next timestep states for timestep 31 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 -Generating next timestep states for timestep 32 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 -Generating next timestep states for timestep 33 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 -Generating next timestep states for timestep 34 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 -Generating next timestep states for timestep 35 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 -Generating next timestep states for timestep 36 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 -Generating next timestep states for timestep 37 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 -Generating next timestep states for timestep 38 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 -Generating next timestep states for timestep 39 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 -Generating next timestep states for timestep 40 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 -Generating next timestep states for timestep 41 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 -Generating next timestep states for timestep 42 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 -Generating next timestep states for timestep 43 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 -Generating next timestep states for timestep 44 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 -Generating next timestep states for timestep 45 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 -Generating next timestep states for timestep 46 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 -Generating next timestep states for timestep 47 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 -Generating next timestep states for timestep 48 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 -Generating next timestep states for timestep 49 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 -Generating next timestep states for timestep 50 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 -Generating next timestep states for timestep 51 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 -Generating next timestep states for timestep 52 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 -Generating next timestep states for timestep 53 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 -Generating next timestep states for timestep 54 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 -Generating next timestep states for timestep 55 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 -Generating next timestep states for timestep 56 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 -Generating next timestep states for timestep 57 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 -Generating next timestep states for timestep 58 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 -Generating next timestep states for timestep 59 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 -Generating next timestep states for timestep 60 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 -Generating next timestep states for timestep 61 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 -Generating next timestep states for timestep 62 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 -Generating next timestep states for timestep 63 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 -Generating next timestep states for timestep 64 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 -Generating next timestep states for timestep 65 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 -Generating next timestep states for timestep 66 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 -Generating next timestep states for timestep 67 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 -Generating next timestep states for timestep 68 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 -Generating next timestep states for timestep 69 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 -Generating next timestep states for timestep 70 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 -Generating next timestep states for timestep 71 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 -Generating next timestep states for timestep 72 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 73 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 74 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 75 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 76 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 77 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 78 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 79 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 80 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 81 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 82 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 83 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 84 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 85 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 86 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 87 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 88 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 89 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 90 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 91 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 92 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 93 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 94 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 95 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 96 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 97 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E13 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.9392E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.6448E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.3504E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.056E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.7616E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.4672E14 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.1728E14 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.8784E14 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.0584E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.12896E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.19952E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.27008E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.34064E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.4112E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.48176E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.55232E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.62288E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.69344E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.764E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.83456E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.90512E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.97568E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.04624E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.1168E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.18736E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.25792E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.32848E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.39904E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.4696E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.54016E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.61072E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.68128E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.75184E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.8224E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.89296E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2.96352E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.03408E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.10464E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.1752E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.24576E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.31632E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.38688E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.45744E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.528E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.59856E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.66912E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.73968E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.81024E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.8808E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3.95136E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.02192E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.09248E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.16304E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.2336E15 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.37472E15 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 98 -Generating next timestep states for timestep 98 ->>>>>>>>>>>>>> State added to bucket 977 -Fill level 97.71481597253614 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 99 ->>>>>>>>>>>>>> State added to bucket 965 -Fill level 96.58703327507237 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 100 ->>>>>>>>>>>>>> State added to bucket 954 -Fill level 95.4592505776086 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 101 ->>>>>>>>>>>>>> State added to bucket 943 -Fill level 94.33146788014483 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 102 ->>>>>>>>>>>>>> State added to bucket 932 -Fill level 93.20368518268106 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 103 ->>>>>>>>>>>>>> State added to bucket 920 -Fill level 92.07590248521728 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 104 ->>>>>>>>>>>>>> State added to bucket 909 -Fill level 90.94811978775351 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 105 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.82033709028974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 106 ->>>>>>>>>>>>>> State added to bucket 886 -Fill level 88.69255439282597 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 107 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.5647716953622 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 108 ->>>>>>>>>>>>>> State added to bucket 864 -Fill level 86.43698899789842 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 109 ->>>>>>>>>>>>>> State added to bucket 853 -Fill level 85.30920630043465 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 110 ->>>>>>>>>>>>>> State added to bucket 841 -Fill level 84.18142360297088 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 111 ->>>>>>>>>>>>>> State added to bucket 830 -Fill level 83.05364090550711 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 112 ->>>>>>>>>>>>>> State added to bucket 819 -Fill level 81.92585820804334 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 113 ->>>>>>>>>>>>>> State added to bucket 807 -Fill level 80.79807551057957 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 114 ->>>>>>>>>>>>>> State added to bucket 796 -Fill level 79.6702928131158 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 115 ->>>>>>>>>>>>>> State added to bucket 785 -Fill level 78.54251011565202 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 116 ->>>>>>>>>>>>>> State added to bucket 774 -Fill level 77.41472741818825 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 117 ->>>>>>>>>>>>>> State added to bucket 762 -Fill level 76.28694472072448 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 118 ->>>>>>>>>>>>>> State added to bucket 751 -Fill level 75.1591620232607 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 119 ->>>>>>>>>>>>>> State added to bucket 740 -Fill level 74.03137932579693 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 120 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.90359662833316 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 121 ->>>>>>>>>>>>>> State added to bucket 717 -Fill level 71.77581393086939 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 122 ->>>>>>>>>>>>>> State added to bucket 706 -Fill level 70.64803123340562 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 123 ->>>>>>>>>>>>>> State added to bucket 695 -Fill level 69.52024853594185 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 124 ->>>>>>>>>>>>>> State added to bucket 683 -Fill level 68.39246583847807 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 125 ->>>>>>>>>>>>>> State added to bucket 672 -Fill level 67.2646831410143 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 126 ->>>>>>>>>>>>>> State added to bucket 661 -Fill level 66.13690044355053 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 127 ->>>>>>>>>>>>>> State added to bucket 650 -Fill level 65.00911774608676 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 128 ->>>>>>>>>>>>>> State added to bucket 638 -Fill level 63.881335048622994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 129 ->>>>>>>>>>>>>> State added to bucket 627 -Fill level 62.75355235115923 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 130 ->>>>>>>>>>>>>> State added to bucket 616 -Fill level 61.625769653695464 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 131 ->>>>>>>>>>>>>> State added to bucket 604 -Fill level 60.4979869562317 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 132 ->>>>>>>>>>>>>> State added to bucket 593 -Fill level 59.370204258767934 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 133 ->>>>>>>>>>>>>> State added to bucket 582 -Fill level 58.24242156130417 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 134 ->>>>>>>>>>>>>> State added to bucket 571 -Fill level 57.114638863840405 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 135 ->>>>>>>>>>>>>> State added to bucket 559 -Fill level 55.98685616637664 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 136 ->>>>>>>>>>>>>> State added to bucket 548 -Fill level 54.859073468912875 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 137 ->>>>>>>>>>>>>> State added to bucket 537 -Fill level 53.73129077144911 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 138 ->>>>>>>>>>>>>> State added to bucket 526 -Fill level 52.603508073985346 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 139 ->>>>>>>>>>>>>> State added to bucket 514 -Fill level 51.47572537652158 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 140 ->>>>>>>>>>>>>> State added to bucket 503 -Fill level 50.347942679057816 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 141 ->>>>>>>>>>>>>> State added to bucket 492 -Fill level 49.22015998159405 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 142 ->>>>>>>>>>>>>> State added to bucket 480 -Fill level 48.092377284130286 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 143 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.96459458666652 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 144 ->>>>>>>>>>>>>> State added to bucket 458 -Fill level 45.83681188920276 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 145 ->>>>>>>>>>>>>> State added to bucket 447 -Fill level 44.70902919173899 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 146 ->>>>>>>>>>>>>> State added to bucket 435 -Fill level 43.58124649427523 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 147 ->>>>>>>>>>>>>> State added to bucket 424 -Fill level 42.45346379681146 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 148 ->>>>>>>>>>>>>> State added to bucket 413 -Fill level 41.3256810993477 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 149 ->>>>>>>>>>>>>> State added to bucket 401 -Fill level 40.19789840188393 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 150 ->>>>>>>>>>>>>> State added to bucket 390 -Fill level 39.07011570442017 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 151 ->>>>>>>>>>>>>> State added to bucket 379 -Fill level 37.9423330069564 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 152 ->>>>>>>>>>>>>> State added to bucket 370 -Fill level 37.04010684898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 153 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 370 -Fill level 37.04010684898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.30416E15 -Generating next timestep states for timestep 154 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 -Generating next timestep states for timestep 155 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 -Generating next timestep states for timestep 156 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 -Generating next timestep states for timestep 157 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 -Generating next timestep states for timestep 158 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 -Generating next timestep states for timestep 159 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 -Generating next timestep states for timestep 160 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 -Generating next timestep states for timestep 161 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 -Generating next timestep states for timestep 162 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 -Generating next timestep states for timestep 163 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 -Generating next timestep states for timestep 164 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 -Generating next timestep states for timestep 165 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 -Generating next timestep states for timestep 166 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 -Generating next timestep states for timestep 167 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 -Generating next timestep states for timestep 168 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.8178883209854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.98272E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 -Generating next timestep states for timestep 169 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.8178883209854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.98272E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.1164996629854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.27513E15 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.8178883209854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.98272E15 -Generating next timestep states for timestep 170 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871819098539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.59657E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732953298539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4.88898E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.93594087498539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.18139E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.23455221698539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.4738E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.53316355898539 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5.76621E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.831774900985394 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.05862E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.130386242985395 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.35103E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.428997584985396 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.64344E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.7276089269854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6.93585E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.0262202689854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.22826E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.3248316109854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.52067E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.6234429529854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7.81308E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.9220542949854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.10549E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.2206656369854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.3979E15 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.8178883209854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.98272E15 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.5192769789854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.69031E15 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.1164996629854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.27513E15 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.8178883209854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8.98272E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.1164996629854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.27513E15 -Generating next timestep states for timestep 171 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 -Generating next timestep states for timestep 172 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 173 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 174 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 175 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 176 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 177 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 178 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 179 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 180 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 181 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 182 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 183 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 184 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 185 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 186 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 187 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 188 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 189 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 190 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 191 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 192 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 193 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 194 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 195 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 196 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 197 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 198 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 199 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 200 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 201 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 202 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 203 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 204 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 205 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 206 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 207 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 208 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 209 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 210 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 211 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 212 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 213 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 214 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 215 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 216 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 217 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 218 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 219 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 220 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 221 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 222 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 223 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 224 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 225 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 226 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 227 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 228 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 229 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 230 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 231 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 232 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 233 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 234 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 235 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 236 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 237 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 238 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 239 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 240 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 241 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 242 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 243 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 244 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 245 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 246 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 247 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 248 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 249 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 250 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 251 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 252 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 253 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 254 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 255 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 256 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 257 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 258 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 259 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 260 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 261 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 262 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 263 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 264 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 265 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 266 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 267 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 268 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 269 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 270 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 271 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 272 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 273 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 274 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 275 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 276 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 277 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 278 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 279 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 280 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 281 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 282 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 283 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 284 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 285 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 -Generating next timestep states for timestep 286 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.4151110049854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.56754E15 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01233368898541 -Energy 1.71E7 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236E16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.7137223469854 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9.85995E15 diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index f409d27..cd32bed 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -156,10 +156,9 @@ def test_connexxion_ev_bus_baseline_byd_225(): plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - print("Start") planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) planning = planner.create_initial_planning(plan_due_by_date) - print(planning.elements) + # print(planning.elements) assert planning.elements == get_JouleProfileTarget() diff --git a/output.txt b/output.txt deleted file mode 100644 index 0d4bdbf..0000000 --- a/output.txt +++ /dev/null @@ -1,62996 +0,0 @@ -Generating timestep 0 -Forecasted fill level usage: 0 -Generating timestep 1 -Forecasted fill level usage: 0 -Generating timestep 2 -Forecasted fill level usage: 0 -Generating timestep 3 -Forecasted fill level usage: 0 -Generating timestep 4 -Forecasted fill level usage: 0 -Generating timestep 5 -Forecasted fill level usage: 0 -Generating timestep 6 -Forecasted fill level usage: 0 -Generating timestep 7 -Forecasted fill level usage: 0 -Generating timestep 8 -Forecasted fill level usage: 0 -Generating timestep 9 -Forecasted fill level usage: 0 -Generating timestep 10 -Forecasted fill level usage: 0 -Generating timestep 11 -Forecasted fill level usage: 0 -Generating timestep 12 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 13 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 14 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 15 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 16 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 17 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 18 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 19 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 20 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 21 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 22 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 23 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 24 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 25 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 26 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 27 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 28 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 29 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 30 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 31 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 32 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 33 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 34 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 35 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 36 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 37 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 38 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 39 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 40 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 41 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 42 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 43 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 44 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 45 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 46 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 47 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 48 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 49 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 50 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 51 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 52 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 53 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 54 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 55 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 56 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 57 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 58 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 59 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 60 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 61 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 62 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 63 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 64 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 65 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 66 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 67 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 68 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 69 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 70 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 71 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 72 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 73 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 74 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 75 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 76 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 77 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 78 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 79 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 80 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 81 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 82 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 83 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 84 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 85 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 86 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 87 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 88 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 89 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 90 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 91 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 92 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 93 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 94 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 95 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 96 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 97 -Forecasted fill level usage: 0.0 -Fill level start of range: 0.0 -Fill level end of range: 100.0 -Generating timestep 98 -Forecasted fill level usage: 0.0 -Fill level start of range: 100.0 -Fill level end of range: 100.0 -CAac -Generating timestep 99 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 100 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 101 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 102 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 103 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 104 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 105 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 106 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 107 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 108 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 109 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 110 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 111 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 112 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 113 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 114 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 115 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 116 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 117 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 118 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 119 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 120 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 121 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 122 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 123 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 124 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 125 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 126 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 127 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 128 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 129 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 130 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 131 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 132 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 133 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 134 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 135 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 136 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 137 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 138 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 139 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 140 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 141 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 142 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 143 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 144 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 145 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 146 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 147 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 148 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 149 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 150 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 151 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 152 -Forecasted fill level usage: -1.1277826974637681 -Generating timestep 153 -Forecasted fill level usage: -0.9022299172466727 -Generating timestep 154 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 155 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 156 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 157 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 158 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 159 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 160 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 161 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 162 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 163 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 164 -Forecasted fill level usage: 0.0 -Fill level start of range: 37.7463951 -Fill level end of range: 100.0 -Generating timestep 165 -Forecasted fill level usage: 0.0 -Fill level start of range: 94.4825134 -Fill level end of range: 100.0 -Generating timestep 166 -Forecasted fill level usage: 0 -Fill level start of range: 94.4825134 -Fill level end of range: 100.0 -Generating timestep 167 -Forecasted fill level usage: 0 -Generating timestep 168 -Forecasted fill level usage: 0 -Generating timestep 169 -Forecasted fill level usage: 0 -Generating timestep 170 -Forecasted fill level usage: 0 -Generating timestep 171 -Forecasted fill level usage: 0 -Generating timestep 172 -Forecasted fill level usage: 0 -Generating timestep 173 -Forecasted fill level usage: 0 -Generating timestep 174 -Forecasted fill level usage: 0 -Generating timestep 175 -Forecasted fill level usage: 0 -Generating timestep 176 -Forecasted fill level usage: 0 -Generating timestep 177 -Forecasted fill level usage: 0 -Generating timestep 178 -Forecasted fill level usage: 0 -Generating timestep 179 -Forecasted fill level usage: 0 -Generating timestep 180 -Forecasted fill level usage: 0 -Generating timestep 181 -Forecasted fill level usage: 0 -Generating timestep 182 -Forecasted fill level usage: 0 -Generating timestep 183 -Forecasted fill level usage: 0 -Generating timestep 184 -Forecasted fill level usage: 0 -Generating timestep 185 -Forecasted fill level usage: 0 -Generating timestep 186 -Forecasted fill level usage: 0 -Generating timestep 187 -Forecasted fill level usage: 0 -Generating timestep 188 -Forecasted fill level usage: 0 -Generating timestep 189 -Forecasted fill level usage: 0 -Generating timestep 190 -Forecasted fill level usage: 0 -Generating timestep 191 -Forecasted fill level usage: 0 -Generating timestep 192 -Forecasted fill level usage: 0 -Generating timestep 193 -Forecasted fill level usage: 0 -Generating timestep 194 -Forecasted fill level usage: 0 -Generating timestep 195 -Forecasted fill level usage: 0 -Generating timestep 196 -Forecasted fill level usage: 0 -Generating timestep 197 -Forecasted fill level usage: 0 -Generating timestep 198 -Forecasted fill level usage: 0 -Generating timestep 199 -Forecasted fill level usage: 0 -Generating timestep 200 -Forecasted fill level usage: 0 -Generating timestep 201 -Forecasted fill level usage: 0 -Generating timestep 202 -Forecasted fill level usage: 0 -Generating timestep 203 -Forecasted fill level usage: 0 -Generating timestep 204 -Forecasted fill level usage: 0 -Generating timestep 205 -Forecasted fill level usage: 0 -Generating timestep 206 -Forecasted fill level usage: 0 -Generating timestep 207 -Forecasted fill level usage: 0 -Generating timestep 208 -Forecasted fill level usage: 0 -Generating timestep 209 -Forecasted fill level usage: 0 -Generating timestep 210 -Forecasted fill level usage: 0 -Generating timestep 211 -Forecasted fill level usage: 0 -Generating timestep 212 -Forecasted fill level usage: 0 -Generating timestep 213 -Forecasted fill level usage: 0 -Generating timestep 214 -Forecasted fill level usage: 0 -Generating timestep 215 -Forecasted fill level usage: 0 -Generating timestep 216 -Forecasted fill level usage: 0 -Generating timestep 217 -Forecasted fill level usage: 0 -Generating timestep 218 -Forecasted fill level usage: 0 -Generating timestep 219 -Forecasted fill level usage: 0 -Generating timestep 220 -Forecasted fill level usage: 0 -Generating timestep 221 -Forecasted fill level usage: 0 -Generating timestep 222 -Forecasted fill level usage: 0 -Generating timestep 223 -Forecasted fill level usage: 0 -Generating timestep 224 -Forecasted fill level usage: 0 -Generating timestep 225 -Forecasted fill level usage: 0 -Generating timestep 226 -Forecasted fill level usage: 0 -Generating timestep 227 -Forecasted fill level usage: 0 -Generating timestep 228 -Forecasted fill level usage: 0 -Generating timestep 229 -Forecasted fill level usage: 0 -Generating timestep 230 -Forecasted fill level usage: 0 -Generating timestep 231 -Forecasted fill level usage: 0 -Generating timestep 232 -Forecasted fill level usage: 0 -Generating timestep 233 -Forecasted fill level usage: 0 -Generating timestep 234 -Forecasted fill level usage: 0 -Generating timestep 235 -Forecasted fill level usage: 0 -Generating timestep 236 -Forecasted fill level usage: 0 -Generating timestep 237 -Forecasted fill level usage: 0 -Generating timestep 238 -Forecasted fill level usage: 0 -Generating timestep 239 -Forecasted fill level usage: 0 -Generating timestep 240 -Forecasted fill level usage: 0 -Generating timestep 241 -Forecasted fill level usage: 0 -Generating timestep 242 -Forecasted fill level usage: 0 -Generating timestep 243 -Forecasted fill level usage: 0 -Generating timestep 244 -Forecasted fill level usage: 0 -Generating timestep 245 -Forecasted fill level usage: 0 -Generating timestep 246 -Forecasted fill level usage: 0 -Generating timestep 247 -Forecasted fill level usage: 0 -Generating timestep 248 -Forecasted fill level usage: 0 -Generating timestep 249 -Forecasted fill level usage: 0 -Generating timestep 250 -Forecasted fill level usage: 0 -Generating timestep 251 -Forecasted fill level usage: 0 -Generating timestep 252 -Forecasted fill level usage: 0 -Generating timestep 253 -Forecasted fill level usage: 0 -Generating timestep 254 -Forecasted fill level usage: 0 -Generating timestep 255 -Forecasted fill level usage: 0 -Generating timestep 256 -Forecasted fill level usage: 0 -Generating timestep 257 -Forecasted fill level usage: 0 -Generating timestep 258 -Forecasted fill level usage: 0 -Generating timestep 259 -Forecasted fill level usage: 0 -Generating timestep 260 -Forecasted fill level usage: 0 -Generating timestep 261 -Forecasted fill level usage: 0 -Generating timestep 262 -Forecasted fill level usage: 0 -Generating timestep 263 -Forecasted fill level usage: 0 -Generating timestep 264 -Forecasted fill level usage: 0 -Generating timestep 265 -Forecasted fill level usage: 0 -Generating timestep 266 -Forecasted fill level usage: 0 -Generating timestep 267 -Forecasted fill level usage: 0 -Generating timestep 268 -Forecasted fill level usage: 0 -Generating timestep 269 -Forecasted fill level usage: 0 -Generating timestep 270 -Forecasted fill level usage: 0 -Generating timestep 271 -Forecasted fill level usage: 0 -Generating timestep 272 -Forecasted fill level usage: 0 -Generating timestep 273 -Forecasted fill level usage: 0 -Generating timestep 274 -Forecasted fill level usage: 0 -Generating timestep 275 -Forecasted fill level usage: 0 -Generating timestep 276 -Forecasted fill level usage: 0 -Generating timestep 277 -Forecasted fill level usage: 0 -Generating timestep 278 -Forecasted fill level usage: 0 -Generating timestep 279 -Forecasted fill level usage: 0 -Generating timestep 280 -Forecasted fill level usage: 0 -Generating timestep 281 -Forecasted fill level usage: 0 -Generating timestep 282 -Forecasted fill level usage: 0 -Generating timestep 283 -Forecasted fill level usage: 0 -Generating timestep 284 -Forecasted fill level usage: 0 -Generating timestep 285 -Forecasted fill level usage: 0 -Generating timestep 286 -Forecasted fill level usage: 0 -Generating timestep 287 -Forecasted fill level usage: 0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 12 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 13 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 14 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 15 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 16 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 17 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 18 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 19 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 20 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 21 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 22 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 23 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 24 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 25 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 26 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 27 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 28 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 29 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 30 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 31 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 32 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 33 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 34 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 35 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 36 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 37 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 38 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 39 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 40 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 41 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 42 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 43 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 44 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 45 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 46 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 47 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 48 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 49 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 50 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 51 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 52 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 53 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 54 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 55 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 56 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 57 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 58 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 59 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 60 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 61 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 62 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 63 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 64 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 65 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 66 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 67 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 68 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 69 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 70 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 71 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 72 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 73 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 74 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 75 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 76 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 77 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 78 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 79 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 80 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 81 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 82 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 83 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 84 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 85 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 86 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 87 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 88 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 89 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 90 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 91 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 92 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 93 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 94 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 95 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 96 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 97 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 0 -Fill level 0.0 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 0.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 16 -Fill level 1.6203704700000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 70560000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 32 -Fill level 3.2407409400000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 141120000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 48 -Fill level 4.86111141 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 211680000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 64 -Fill level 6.4814818800000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 282240000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 81 -Fill level 8.101852350000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 352800000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 97 -Fill level 9.722222820000002 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 423360000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 113 -Fill level 11.342593290000003 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 493920000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 129 -Fill level 12.962963760000004 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 564480000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 145 -Fill level 14.583334230000006 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 635040000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 162 -Fill level 16.203704700000007 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 705600000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 178 -Fill level 17.824075170000008 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 776160000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 194 -Fill level 19.44444564000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 846720000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 210 -Fill level 21.06481611000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 917280000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 226 -Fill level 22.68518658000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 987840000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 243 -Fill level 24.30555705000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1058400000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 259 -Fill level 25.925927520000013 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1128960000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 275 -Fill level 27.546297990000014 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1199520000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 291 -Fill level 29.166668460000015 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1270080000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 307 -Fill level 30.787038930000016 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1340640000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 324 -Fill level 32.40740940000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1411200000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 340 -Fill level 34.02777987000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1481760000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 356 -Fill level 35.64815034000001 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1552320000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 372 -Fill level 37.268520810000005 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1622880000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 388 -Fill level 38.88889128 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1693440000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 405 -Fill level 40.50926175 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1764000000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 421 -Fill level 42.12963222 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1834560000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 437 -Fill level 43.750002689999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1905120000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 453 -Fill level 45.37037315999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1975680000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.99074362999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2046240000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 486 -Fill level 48.61111409999999 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2116800000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.231484569999985 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2187360000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 518 -Fill level 51.85185503999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2257920000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 534 -Fill level 53.47222550999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2328480000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 550 -Fill level 55.09259597999998 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2399040000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 567 -Fill level 56.712966449999975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2469600000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 583 -Fill level 58.33333691999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2540160000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 599 -Fill level 59.95370738999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2610720000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 615 -Fill level 61.57407785999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2681280000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 631 -Fill level 63.194448329999965 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2751840000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 648 -Fill level 64.81481879999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2822400000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 664 -Fill level 66.43518926999997 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2892960000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 680 -Fill level 68.05555973999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 2963520000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 696 -Fill level 69.67593020999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3034080000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 712 -Fill level 71.29630067999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3104640000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.91667114999996 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3175200000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 745 -Fill level 74.53704161999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3245760000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 761 -Fill level 76.15741208999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3316320000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 777 -Fill level 77.77778255999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3386880000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 793 -Fill level 79.39815302999995 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3457440000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 810 -Fill level 81.01852349999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3528000000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 826 -Fill level 82.63889396999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3598560000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 842 -Fill level 84.25926443999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3669120000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 858 -Fill level 85.87963490999994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3739680000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.50000537999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3810240000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 891 -Fill level 89.12037584999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3880800000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 907 -Fill level 90.74074631999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 3951360000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 923 -Fill level 92.36111678999993 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4021920000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 939 -Fill level 93.98148725999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4092480000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 956 -Fill level 95.60185772999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4163040000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>> State added to bucket 972 -Fill level 97.22222819999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4233600000000000.0 ->>>>>>>>>>>>>> State added to bucket 1004 -Fill level 100.46296913999991 -Energy 8400000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4374720000000000.0 ->>>>>>>>>>>>>> State added to bucket 988 -Fill level 98.84259866999992 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 98 ->>>>>>>>>>>>>> State added to bucket 977 -Fill level 97.71481597253614 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 99 ->>>>>>>>>>>>>> State added to bucket 965 -Fill level 96.58703327507237 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 100 ->>>>>>>>>>>>>> State added to bucket 954 -Fill level 95.4592505776086 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 101 ->>>>>>>>>>>>>> State added to bucket 943 -Fill level 94.33146788014483 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 102 ->>>>>>>>>>>>>> State added to bucket 932 -Fill level 93.20368518268106 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 103 ->>>>>>>>>>>>>> State added to bucket 920 -Fill level 92.07590248521728 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 104 ->>>>>>>>>>>>>> State added to bucket 909 -Fill level 90.94811978775351 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 105 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.82033709028974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 106 ->>>>>>>>>>>>>> State added to bucket 886 -Fill level 88.69255439282597 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 107 ->>>>>>>>>>>>>> State added to bucket 875 -Fill level 87.5647716953622 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 108 ->>>>>>>>>>>>>> State added to bucket 864 -Fill level 86.43698899789842 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 109 ->>>>>>>>>>>>>> State added to bucket 853 -Fill level 85.30920630043465 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 110 ->>>>>>>>>>>>>> State added to bucket 841 -Fill level 84.18142360297088 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 111 ->>>>>>>>>>>>>> State added to bucket 830 -Fill level 83.05364090550711 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 112 ->>>>>>>>>>>>>> State added to bucket 819 -Fill level 81.92585820804334 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 113 ->>>>>>>>>>>>>> State added to bucket 807 -Fill level 80.79807551057957 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 114 ->>>>>>>>>>>>>> State added to bucket 796 -Fill level 79.6702928131158 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 115 ->>>>>>>>>>>>>> State added to bucket 785 -Fill level 78.54251011565202 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 116 ->>>>>>>>>>>>>> State added to bucket 774 -Fill level 77.41472741818825 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 117 ->>>>>>>>>>>>>> State added to bucket 762 -Fill level 76.28694472072448 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 118 ->>>>>>>>>>>>>> State added to bucket 751 -Fill level 75.1591620232607 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 119 ->>>>>>>>>>>>>> State added to bucket 740 -Fill level 74.03137932579693 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 120 ->>>>>>>>>>>>>> State added to bucket 729 -Fill level 72.90359662833316 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 121 ->>>>>>>>>>>>>> State added to bucket 717 -Fill level 71.77581393086939 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 122 ->>>>>>>>>>>>>> State added to bucket 706 -Fill level 70.64803123340562 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 123 ->>>>>>>>>>>>>> State added to bucket 695 -Fill level 69.52024853594185 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 124 ->>>>>>>>>>>>>> State added to bucket 683 -Fill level 68.39246583847807 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 125 ->>>>>>>>>>>>>> State added to bucket 672 -Fill level 67.2646831410143 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 126 ->>>>>>>>>>>>>> State added to bucket 661 -Fill level 66.13690044355053 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 127 ->>>>>>>>>>>>>> State added to bucket 650 -Fill level 65.00911774608676 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 128 ->>>>>>>>>>>>>> State added to bucket 638 -Fill level 63.881335048622994 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 129 ->>>>>>>>>>>>>> State added to bucket 627 -Fill level 62.75355235115923 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 130 ->>>>>>>>>>>>>> State added to bucket 616 -Fill level 61.625769653695464 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 131 ->>>>>>>>>>>>>> State added to bucket 604 -Fill level 60.4979869562317 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 132 ->>>>>>>>>>>>>> State added to bucket 593 -Fill level 59.370204258767934 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 133 ->>>>>>>>>>>>>> State added to bucket 582 -Fill level 58.24242156130417 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 134 ->>>>>>>>>>>>>> State added to bucket 571 -Fill level 57.114638863840405 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 135 ->>>>>>>>>>>>>> State added to bucket 559 -Fill level 55.98685616637664 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 136 ->>>>>>>>>>>>>> State added to bucket 548 -Fill level 54.859073468912875 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 137 ->>>>>>>>>>>>>> State added to bucket 537 -Fill level 53.73129077144911 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 138 ->>>>>>>>>>>>>> State added to bucket 526 -Fill level 52.603508073985346 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 139 ->>>>>>>>>>>>>> State added to bucket 514 -Fill level 51.47572537652158 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 140 ->>>>>>>>>>>>>> State added to bucket 503 -Fill level 50.347942679057816 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 141 ->>>>>>>>>>>>>> State added to bucket 492 -Fill level 49.22015998159405 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 142 ->>>>>>>>>>>>>> State added to bucket 480 -Fill level 48.092377284130286 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 143 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.96459458666652 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 144 ->>>>>>>>>>>>>> State added to bucket 458 -Fill level 45.83681188920276 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 145 ->>>>>>>>>>>>>> State added to bucket 447 -Fill level 44.70902919173899 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 146 ->>>>>>>>>>>>>> State added to bucket 435 -Fill level 43.58124649427523 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 147 ->>>>>>>>>>>>>> State added to bucket 424 -Fill level 42.45346379681146 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 148 ->>>>>>>>>>>>>> State added to bucket 413 -Fill level 41.3256810993477 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 149 ->>>>>>>>>>>>>> State added to bucket 401 -Fill level 40.19789840188393 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 150 ->>>>>>>>>>>>>> State added to bucket 390 -Fill level 39.07011570442017 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 151 ->>>>>>>>>>>>>> State added to bucket 379 -Fill level 37.9423330069564 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 152 ->>>>>>>>>>>>>> State added to bucket 370 -Fill level 37.04010308970973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 153 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 370 -Fill level 37.04010308970973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4304160000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 154 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 155 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 156 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 157 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 158 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 159 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 160 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 161 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 162 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.02621650970974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7228260000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 163 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.02621650970974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7228260000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.32482785170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7520670000000000.0 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.02621650970974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7228260000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 164 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 403 -Fill level 40.33871443170973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4596570000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 436 -Fill level 43.63732577370973 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 4888980000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 469 -Fill level 46.935937115709734 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5181390000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 502 -Fill level 50.234548457709735 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5473800000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 535 -Fill level 53.533159799709736 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 5766210000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 568 -Fill level 56.83177114170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6058620000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 601 -Fill level 60.13038248370974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6351030000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>> State added to bucket 634 -Fill level 63.42899382570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6643440000000000.0 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.02621650970974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7228260000000000.0 ->>>>>>>>>>>>>> State added to bucket 667 -Fill level 66.72760516770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 6935850000000000.0 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.32482785170974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7520670000000000.0 ->>>>>>>>>>>>>> State added to bucket 700 -Fill level 70.02621650970974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7228260000000000.0 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.62343919370974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7813080000000000.0 ->>>>>>>>>>>>>> State added to bucket 733 -Fill level 73.32482785170974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7520670000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 165 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 766 -Fill level 76.62343919370974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 7813080000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 166 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 167 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 168 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 169 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 170 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 171 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 172 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 173 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 174 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 175 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 176 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 177 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 178 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 179 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 180 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 181 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 182 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 183 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 184 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 185 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 186 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 187 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 188 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 189 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 190 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 191 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 192 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 193 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 194 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 195 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 196 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 197 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 198 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 199 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 200 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 201 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 202 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 203 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 204 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 205 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 206 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 207 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 208 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 209 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 210 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 211 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 212 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 213 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 214 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 215 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 216 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 217 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 218 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 219 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 220 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 221 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 222 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 223 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 224 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 225 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 226 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 227 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 228 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 229 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 230 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 231 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 232 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 233 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 234 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 235 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 236 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 237 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 238 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 239 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 240 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 241 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 242 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 243 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 244 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 245 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 246 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 247 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 248 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 249 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 250 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 251 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 252 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 253 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 254 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 255 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 256 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 257 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 258 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 259 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 260 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 261 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 262 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 263 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 264 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 265 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 266 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 267 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 268 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 269 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 270 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 271 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 272 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 273 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 274 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 275 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 276 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 277 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 278 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 279 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 280 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 281 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 282 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 283 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 284 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 285 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>>>>>>>>>>>>>>>> Generating next timestep states for timestep 286 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 799 -Fill level 79.92205053570974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8105490000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 832 -Fill level 83.22066187770974 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8397900000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 865 -Fill level 86.51927321970975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8690310000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 898 -Fill level 89.81788456170975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 8982720000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 931 -Fill level 93.11649590370975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9275130000000000.0 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 ->>>>>>>>>>>>>> State added to bucket 964 -Fill level 96.41510724570975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9567540000000000.0 ->>>>>>>>>>>>>> State added to bucket 1030 -Fill level 103.01232992970975 -Energy 17100000.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 1.015236e+16 ->>>>>>>>>>>>>> State added to bucket 997 -Fill level 99.71371858770975 -Energy 0.0 -Constraint violation 0.0 -Sum squared distance 0.0 -Sum energy cost 0.0 -Sum squared energy 9859950000000000.0 From a0915b9cba99418c836881bf98d5a6151a1637bc Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Mar 2025 11:19:20 +0100 Subject: [PATCH 22/33] Created planning service implementation that takes a device state and a target as input Signed-off-by: Vlad Iftime --- .../common/joule_range_profile.py | 248 ++++++++++ .../profile_steering/common/output.txt | 4 - .../profile_steering/common/soc_profile.py | 4 +- .../congestion_point_planner.py | 7 +- .../frbc/frbc_operation_mode_wrapper.py | 9 +- .../device_planner/frbc/frbc_state.py | 243 +++++----- .../device_planner/frbc/frbc_timestep.py | 4 +- .../frbc/operation_mode_profile_tree.py | 192 +++++--- .../frbc/s2_frbc_device_planner.py | 22 +- .../frbc/s2_frbc_device_state.py | 2 +- .../frbc/s2_frbc_device_state_wrapper.py | 35 +- .../frbc/s2_frbc_instruction_profile.py | 8 +- .../frbc/usage_forecast_util.py | 8 +- .../profile_steering/planning_service_impl.py | 365 +++++++++++++++ .../profile_steering/root_planner.py | 14 +- .../profile_steering/tests/plot_utils.py | 22 + .../tests/test_frbc_device.py | 427 ++++++++++++++---- requirements/testi.txt | 51 +-- 18 files changed, 1343 insertions(+), 322 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/common/joule_range_profile.py delete mode 100644 flexmeasures_s2/profile_steering/common/output.txt create mode 100644 flexmeasures_s2/profile_steering/planning_service_impl.py create mode 100644 flexmeasures_s2/profile_steering/tests/plot_utils.py diff --git a/flexmeasures_s2/profile_steering/common/joule_range_profile.py b/flexmeasures_s2/profile_steering/common/joule_range_profile.py new file mode 100644 index 0000000..42bc39e --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/joule_range_profile.py @@ -0,0 +1,248 @@ +from dataclasses import dataclass +from datetime import datetime, timedelta +from typing import List, Optional, TypeVar, Union, Tuple + +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile + + +@dataclass +class Element: + """ + Represents an element in a JouleRangeProfile with min and max joule values. + Both values can be None, representing unbounded values. + """ + + min_joule: Optional[int] = None + max_joule: Optional[int] = None + + # Class constant for NULL element + NULL = None # Will be set after class definition + + def __eq__(self, other): + if not isinstance(other, Element): + return False + return self.min_joule == other.min_joule and self.max_joule == other.max_joule + + def __str__(self): + return f"Element(min_joule={self.min_joule}, max_joule={self.max_joule})" + + +# Set the NULL element after class definition +Element.NULL = Element(None, None) + + +class JouleRangeProfile(AbstractProfile[Element, "JouleRangeProfile"]): + """ + A profile containing elements with minimum and maximum joule values. + This is the Python implementation of the Java JouleRangeProfile class. + """ + + def __init__( + self, + profile_start: Union[datetime, ProfileMetadata], + timestep_duration: Optional[timedelta] = None, + elements: Optional[List[Element]] = None, + min_value: Optional[int] = None, + max_value: Optional[int] = None, + nr_of_timesteps: Optional[int] = None, + ): + """ + Initialize a JouleRangeProfile with various constructor options. + + Args: + profile_start: Either a datetime representing profile start or a ProfileMetadata + timestep_duration: Duration of each timestep (if profile_start is datetime) + elements: List of Element objects with min/max joule values + min_value: Optional default min value for all elements + max_value: Optional default max value for all elements + nr_of_timesteps: Number of timesteps for the profile + """ + if isinstance(profile_start, ProfileMetadata): + metadata = profile_start + if elements is not None: + pass # Use provided elements + elif min_value is not None or max_value is not None: + elements = self._create_element_array( + metadata.get_nr_of_timesteps(), min_value, max_value + ) + else: + elements = [] + else: + if elements is not None: + metadata = ProfileMetadata( + profile_start, timestep_duration, len(elements) + ) + elif nr_of_timesteps is not None: + metadata = ProfileMetadata( + profile_start, timestep_duration, nr_of_timesteps + ) + elements = self._create_element_array( + nr_of_timesteps, min_value, max_value + ) + else: + metadata = ProfileMetadata(profile_start, timestep_duration, 0) + elements = [] + + super().__init__(metadata, elements) + + @staticmethod + def _create_element_array( + nr_of_elements: int, min_value: Optional[int], max_value: Optional[int] + ) -> List[Element]: + """Create an array of elements with the given min and max values.""" + return [Element(min_value, max_value) for _ in range(nr_of_elements)] + + def validate(self, profile_metadata: ProfileMetadata, elements: List[Element]): + """Validate the elements and metadata for this profile.""" + super().validate(profile_metadata, elements) + # Add any JouleRangeProfile-specific validation here if needed + + def is_within_range(self, other: JouleProfile) -> bool: + """ + Check if the given JouleProfile is within the range defined by this profile. + + Args: + other: JouleProfile to check + + Returns: + True if other is within the range, False otherwise + """ + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + + for i in range(self.metadata.get_nr_of_timesteps()): + element = self.elements[i] + other_value = other.get_energy_for_timestep(i) + + if element.min_joule is not None and other_value < element.min_joule: + return False + + if element.max_joule is not None and other_value > element.max_joule: + return False + + return True + + def difference_with_max_value(self, other: JouleProfile) -> JouleProfile: + """ + Calculate the difference between this profile's max values and the other profile. + + Args: + other: JouleProfile to compare against + + Returns: + JouleProfile containing the differences + """ + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + + return_values = [] + + for i in range(self.metadata.get_nr_of_timesteps()): + if self.elements[i].max_joule is None: + return_values.append(None) + else: + return_values.append( + self.elements[i].max_joule - other.get_energy_for_timestep(i) + ) + + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + return_values, + ) + + def difference_with_min_value(self, other: JouleProfile) -> JouleProfile: + """ + Calculate the difference between this profile's min values and the other profile. + + Args: + other: JouleProfile to compare against + + Returns: + JouleProfile containing the differences + """ + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + + return_values = [] + + for i in range(self.metadata.get_nr_of_timesteps()): + if self.elements[i].min_joule is None: + return_values.append(None) + else: + return_values.append( + self.elements[i].min_joule - other.get_energy_for_timestep(i) + ) + + return JouleProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + return_values, + ) + + def subprofile(self, new_start_date: datetime) -> "JouleRangeProfile": + """ + Create a subprofile starting from the given date. + + Args: + new_start_date: Start date for the new profile + + Returns: + New JouleRangeProfile starting from the given date + """ + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + + new_elements = self.elements[index:] + return JouleRangeProfile( + new_start_date, self.metadata.get_timestep_duration(), new_elements + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleRangeProfile": + """ + Adjust the number of elements in this profile. + + Args: + nr_of_elements: New number of elements + + Returns: + New JouleRangeProfile with adjusted number of elements + """ + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [Element.NULL] * ( + nr_of_elements - len(self.elements) + ) + + return JouleRangeProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + new_elements, + ) + + def is_compatible(self, other: AbstractProfile) -> bool: + """ + Check if this profile is compatible with another profile. + + Args: + other: Another profile to check compatibility with + + Returns: + True if compatible, False otherwise + + """ + return ( + self.metadata == other.get_profile_metadata() + ) + + def __str__(self) -> str: + """Return a string representation of this profile.""" + return ( + f"JouleRangeProfile(elements={self.elements}, " + f"profile_start={self.metadata.get_profile_start()}, " + f"timestep_duration={self.metadata.get_timestep_duration()})" + ) diff --git a/flexmeasures_s2/profile_steering/common/output.txt b/flexmeasures_s2/profile_steering/common/output.txt deleted file mode 100644 index 154a870..0000000 --- a/flexmeasures_s2/profile_steering/common/output.txt +++ /dev/null @@ -1,4 +0,0 @@ -[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - -[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 8400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] -E \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py index f3acb67..dc62266 100644 --- a/flexmeasures_s2/profile_steering/common/soc_profile.py +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -12,7 +12,9 @@ def __init__( self.timestep_duration = self.profile_metadata.get_timestep_duration() self.profile_start = self.profile_metadata.get_profile_start() self.profile_end = self.profile_metadata.get_profile_end() - super().__init__(self.profile_metadata, elements if elements is not None else []) + super().__init__( + self.profile_metadata, elements if elements is not None else [] + ) def default_value(self) -> Optional[float]: return None diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index 070a1ca..65862dc 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -1,8 +1,11 @@ from datetime import datetime from typing import List, Optional from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from .joule_range_profile import JouleRangeProfile -from .proposal import Proposal +from flexmeasures_s2.profile_steering.common.joule_range_profile import ( + JouleRangeProfile, +) +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import DevicePlanner class CongestionPointPlanner: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py index 0f73376..d8c9eb5 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py @@ -4,6 +4,7 @@ ) from s2python.frbc import FRBCOperationModeElement + class FrbcOperationModeElementWrapper: def __init__(self, frbc_operation_mode_element: FRBCOperationModeElement): self.fill_rate = NumberRangeWrapper( @@ -28,10 +29,11 @@ def get_power_ranges(self) -> List[NumberRangeWrapper]: def get_fill_level_range(self) -> NumberRangeWrapper: return self.fill_level_range - + def get_power_ranges(self): return self.frbc_operation_mode_element.power_ranges + class FrbcOperationModeWrapper: def __init__(self, frbc_operation_mode): self.id = frbc_operation_mode.id @@ -59,10 +61,7 @@ def calculate_uses_factor(self) -> bool: return True for power_range in element.get_power_ranges(): if ( - abs( - power_range.start_of_range - - power_range.end_of_range - ) + abs(power_range.start_of_range - power_range.end_of_range) > S2FrbcDeviceStateWrapper.epsilon ): return True diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 0cb918f..3648aea 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -5,16 +5,15 @@ ) from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus -import \ - flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper +import flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) -import \ - flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import \ - S2FrbcDeviceState +import flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( SelectionResult, SelectionReason, @@ -28,18 +27,18 @@ class FrbcState: tariff_epsilon = 0.5 def __init__( - self, - timestep, - present_fill_level: float, - device_state: Optional[S2FrbcDeviceState] = None, - previous_state: Optional["FrbcState"] = None, - actuator_configurations: Optional[ - Dict[str, S2ActuatorConfiguration]] = None, + self, + timestep, + present_fill_level: float, + device_state: Optional[S2FrbcDeviceState] = None, + previous_state: Optional["FrbcState"] = None, + actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, ): if previous_state: if device_state: - self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( - device_state) + self.device_state = ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper(device_state) + ) else: self.device_state = previous_state.device_state self.timestep = timestep @@ -61,7 +60,8 @@ def __init__( om, previous_state.fill_level, actuator_configuration.get_factor(), - ) * seconds + ) + * seconds ) self.fill_level += ( @@ -69,37 +69,53 @@ def __init__( om, previous_state.fill_level, actuator_configuration.get_factor(), - ) * seconds + ) + * seconds ) self.fill_level -= ( s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( self.timestep, self.fill_level - ) * seconds + ) + * seconds ) self.fill_level += self.timestep.get_forecasted_usage() - self.bucket = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( - self.timestep, self.fill_level + self.bucket = ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( + self.timestep, self.fill_level + ) ) - if previous_state.system_description.valid_from == self.system_description.valid_from: + if ( + previous_state.system_description.valid_from + == self.system_description.valid_from + ): self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() - for actuator_id, actuator_configuration in actuator_configurations.items(): + for ( + actuator_id, + actuator_configuration, + ) in actuator_configurations.items(): if isinstance(actuator_id, str): actuator_id = uuid.UUID(actuator_id) - previous_operation_mode_id = previous_state.get_actuator_configurations()[ - actuator_id - ].get_operation_mode_id() + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + ) if isinstance(previous_operation_mode_id, str): - previous_operation_mode_id = uuid.UUID(previous_operation_mode_id) - new_operation_mode_id = actuator_configuration.get_operation_mode_id() + previous_operation_mode_id = uuid.UUID( + previous_operation_mode_id + ) + new_operation_mode_id = ( + actuator_configuration.get_operation_mode_id() + ) if isinstance(new_operation_mode_id, str): new_operation_mode_id = uuid.UUID(new_operation_mode_id) if previous_operation_mode_id != new_operation_mode_id: transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( - self.timestep, - actuator_id, - previous_operation_mode_id, - new_operation_mode_id, - ) + self.timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) for timer_id in transition.start_timers: duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( self.timestep, actuator_id, timer_id @@ -124,7 +140,9 @@ def __init__( else: self.sum_squared_distance = previous_state.get_sum_squared_distance() self.sum_energy_cost = previous_state.get_sum_energy_cost() - squared_constraint_violation = previous_state.get_sum_squared_constraint_violation() + squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + ) if self.timestep.get_max_constraint() is not None: if self.timestep_energy > self.timestep.get_max_constraint(): squared_constraint_violation += ( @@ -140,21 +158,24 @@ def __init__( + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 + previous_state.get_sum_squared_energy() + self.timestep_energy**2 ) - + self.selection_reason: Optional[SelectionReason] = None self.actuator_configurations = actuator_configurations or {} for k in list(self.get_actuator_configurations().keys()): if isinstance(k, str): # Convert strings to UUIDs - self.actuator_configurations[uuid.UUID(k)] = self.actuator_configurations.pop(k) + self.actuator_configurations[uuid.UUID(k)] = ( + self.actuator_configurations.pop(k) + ) self.timestep.add_state(self) else: self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( - device_state) + device_state + ) self.timestep = timestep self.previous_state = None self.system_description = timestep.get_system_description() @@ -177,16 +198,16 @@ def __init__( actuators = self.system_description.actuators for actuator in actuators: if actuator.id == a.actuator_id: - self.actuator_configurations[ - a.actuator_id] = S2ActuatorConfiguration( #TODO here was the problem with str and uuid - actuator_status.active_operation_mode_id, - actuator_status.operation_mode_factor, + self.actuator_configurations[a.actuator_id] = ( + S2ActuatorConfiguration( # TODO here was the problem with str and uuid + actuator_status.active_operation_mode_id, + actuator_status.operation_mode_factor, + ) ) - @staticmethod def get_initial_timer_elapse_map_for_system_description( - system_description: FRBCSystemDescription, + system_description: FRBCSystemDescription, ) -> Dict[tuple, datetime]: timer_elapse_map = {} for actuator in system_description.actuators: @@ -196,9 +217,9 @@ def get_initial_timer_elapse_map_for_system_description( return timer_elapse_map def calculate_state_values( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): self.timestep_energy = 0.0 self.fill_level = previous_state.get_fill_level() @@ -210,26 +231,26 @@ def calculate_state_values( actuator_configuration.get_operation_mode_id(), ) self.timestep_energy += ( - self.device_state.get_operation_mode_power( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds + self.device_state.get_operation_mode_power( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds ) self.fill_level += ( - self.device_state.get_operation_mode_fill_rate( - om, - previous_state.get_fill_level(), - actuator_configuration.get_factor(), - ) - * seconds - ) - self.fill_level -= ( - s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( - self.timestep, self.fill_level + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), ) * seconds + ) + self.fill_level -= ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) + * seconds ) self.fill_level += self.timestep.get_forecasted_usage() self.bucket = ( @@ -242,13 +263,13 @@ def calculate_state_values( self.timestep.add_state(self) def update_timers( - self, - previous_state: "FrbcState", - actuator_configurations: Dict[str, S2ActuatorConfiguration], + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], ): if ( - previous_state.system_description.valid_from - == self.system_description.valid_from + previous_state.system_description.valid_from + == self.system_description.valid_from ): self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() for actuator_id, actuator_configuration in actuator_configurations.items(): @@ -289,8 +310,8 @@ def calculate_scores(self, previous_state: "FrbcState"): target = self.timestep.get_target() if isinstance(target, TargetProfile.JouleElement): self.sum_squared_distance = ( - previous_state.get_sum_squared_distance() - + (target.get_joules() - self.timestep_energy) ** 2 + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 ) self.sum_energy_cost = previous_state.get_sum_energy_cost() @@ -301,30 +322,30 @@ def calculate_scores(self, previous_state: "FrbcState"): previous_state.get_sum_squared_constraint_violation() ) if ( - self.timestep.get_max_constraint() is not None - and self.timestep_energy > self.timestep.get_max_constraint() + self.timestep.get_max_constraint() is not None + and self.timestep_energy > self.timestep.get_max_constraint() ): squared_constraint_violation += ( - self.timestep_energy - self.timestep.get_max_constraint() - ) ** 2 + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 if ( - self.timestep.get_min_constraint() is not None - and self.timestep_energy < self.timestep.get_min_constraint() + self.timestep.get_min_constraint() is not None + and self.timestep_energy < self.timestep.get_min_constraint() ): squared_constraint_violation += ( - self.timestep.get_min_constraint() - self.timestep_energy - ) ** 2 + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 self.sum_squared_constraint_violation = ( - previous_state.get_sum_squared_constraint_violation() - + squared_constraint_violation + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation ) self.sum_squared_energy = ( - previous_state.get_sum_squared_energy() + self.timestep_energy ** 2 + previous_state.get_sum_squared_energy() + self.timestep_energy**2 ) @staticmethod def timer_key(actuator_id: str, timer_id: str) -> tuple: - return (actuator_id, timer_id) + return (actuator_id, timer_id) def generate_next_timestep_states(self, target_timestep): all_actions = self.device_state.get_all_possible_actuator_configurations( @@ -335,18 +356,17 @@ def generate_next_timestep_states(self, target_timestep): @staticmethod def try_create_next_state( - previous_state: "FrbcState", - target_timestep, - actuator_configs_for_target_timestep: Dict[ - str, S2ActuatorConfiguration], + previous_state: "FrbcState", + target_timestep, + actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], ): if ( - previous_state.system_description.valid_from - == target_timestep.system_description.valid_from + previous_state.system_description.valid_from + == target_timestep.system_description.valid_from ): for ( - actuator_id, - actuator_configuration, + actuator_id, + actuator_configuration, ) in actuator_configs_for_target_timestep.items(): if isinstance(actuator_id, str): actuator_id = uuid.UUID(actuator_id) @@ -356,13 +376,17 @@ def try_create_next_state( try: previous_operation_mode_id = ( previous_state.get_actuator_configurations()[ - actuator_id].get_operation_mode_id() + actuator_id + ].get_operation_mode_id() ) if isinstance(previous_operation_mode_id, str): - previous_operation_mode_id = uuid.UUID(previous_operation_mode_id) + previous_operation_mode_id = uuid.UUID( + previous_operation_mode_id + ) except KeyError: raise KeyError( - f"UUID {actuator_id} not found in actuator configurations") + f"UUID {actuator_id} not found in actuator configurations" + ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() if isinstance(new_operation_mode_id, str): @@ -383,9 +407,12 @@ def try_create_next_state( ) ) if ( - timer_is_finished_at - and timer_is_finished_at.year != 1 - and target_timestep.get_start_date() < timer_is_finished_at.astimezone(target_timestep.get_start_date().tzinfo) + timer_is_finished_at + and timer_is_finished_at.year != 1 + and target_timestep.get_start_date() + < timer_is_finished_at.astimezone( + target_timestep.get_start_date().tzinfo + ) ): return False FrbcState( @@ -398,29 +425,29 @@ def try_create_next_state( def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: if ( - abs( - self.sum_squared_constraint_violation - - other_state.get_sum_squared_constraint_violation() - ) - >= self.constraint_epsilon + abs( + self.sum_squared_constraint_violation + - other_state.get_sum_squared_constraint_violation() + ) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_constraint_violation - < other_state.get_sum_squared_constraint_violation(), + < other_state.get_sum_squared_constraint_violation(), reason=SelectionReason.CONGESTION_CONSTRAINT, ) elif ( - abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) - >= self.constraint_epsilon + abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) + >= self.constraint_epsilon ): return SelectionResult( result=self.sum_squared_distance - < other_state.get_sum_squared_distance(), + < other_state.get_sum_squared_distance(), reason=SelectionReason.ENERGY_TARGET, ) elif ( - abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) - >= self.tariff_epsilon + abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) + >= self.tariff_epsilon ): return SelectionResult( result=self.sum_energy_cost < other_state.get_sum_energy_cost(), @@ -435,8 +462,8 @@ def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: def is_within_fill_level_range(self): fill_level_range = self.system_description.storage.fill_level_range return ( - self.fill_level >= fill_level_range.start_of_range - and self.fill_level <= fill_level_range.end_of_range + self.fill_level >= fill_level_range.start_of_range + and self.fill_level <= fill_level_range.end_of_range ) def get_fill_level_distance(self): diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index 81dbcfb..ce2c0dd 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -123,7 +123,7 @@ def get_state_list(self) -> List[Optional[FrbcState]]: def get_final_states(self) -> List[FrbcState]: final_states = [state for state in self.state_list if state is not None] - #print out the position of the states in final_states + # print out the position of the states in final_states if not final_states and self.emergency_state is not None: return [self.emergency_state] @@ -139,7 +139,7 @@ def get_final_states_within_fill_level_target(self) -> List[FrbcState]: if final_states: return final_states best_state = min( - self.get_final_states(), key=self.get_fill_level_target_distance + self.get_final_states(), key=self.get_fill_level_target_distance ) return [best_state] diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index a4e80da..b2c09a8 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -1,5 +1,5 @@ from datetime import datetime, timedelta -from typing import List, Optional, Any +from typing import List, Optional, Any, Tuple from zoneinfo import ZoneInfo from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import ( @@ -9,8 +9,7 @@ S2FrbcDeviceStateWrapper, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import \ - FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState from flexmeasures_s2.profile_steering.device_planner.frbc.fill_level_target_util import ( FillLevelTargetUtil, ) @@ -20,10 +19,8 @@ from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( NumberRangeWrapper, ) -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import \ - S2FrbcPlan -from flexmeasures_s2.profile_steering.common.profile_metadata import \ - ProfileMetadata +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( @@ -35,14 +32,99 @@ # TODO: Add S2FrbcInsightsProfile?->Update 08-02-2025: Not needed for now +import matplotlib.pyplot as plt +import matplotlib.dates as mdates +import matplotlib.patches as mpatches + + +def plot_planning_results( + timestep_start_times, energy_elements, fill_level_elements, operation_mode_ids, ids +): + """ + Plots the energy, fill level, actuator usage, and operation mode ID lists using matplotlib. + + :param timestep_start_times: List of datetime objects representing the start time of each timestep. + :param energy_elements: List of energy values. + :param fill_level_elements: List of fill level values. + :param operation_mode_ids: List of dictionaries with actuator configurations. + :param ids: List of tuples (id, name) for debugging. + """ + # Create a figure and a set of subplots + fig, axs = plt.subplots(4, 1, figsize=(12, 16), sharex=True) + + # Plot energy elements + axs[0].plot(timestep_start_times, energy_elements, label="Energy", color="blue") + axs[0].set_ylabel("Energy (Joules)") + axs[0].legend(loc="upper right") + axs[0].grid(True) + + # Plot fill level elements + axs[1].plot( + timestep_start_times, fill_level_elements, label="Fill Level", color="green" + ) + axs[1].set_ylabel("Fill Level (%)") + axs[1].legend(loc="upper right") + axs[1].grid(True) + + # Create a dictionary from the list of tuples for easier lookup + id_to_name = {id_val: name for id_val, name in ids} + + # Create a color mapping for names + unique_names = set(name for _, name in ids) + actuator_colors = {name: f"C{i}" for i, name in enumerate(unique_names)} + + # Plot actuator usage + for i, (time, config) in enumerate(zip(timestep_start_times, operation_mode_ids)): + for actuator_id, config in config.items(): + actuator_name = id_to_name.get(str(actuator_id), str(actuator_id)) + axs[2].scatter( + time, + actuator_name, + color=actuator_colors.get(actuator_name, "black"), + label=actuator_name if i == 0 else "", + ) + axs[2].set_ylabel("Actuator Name") + handles, labels = axs[2].get_legend_handles_labels() + by_label = dict(zip(labels, handles)) + axs[2].legend(by_label.values(), by_label.keys(), loc="upper right") + axs[2].grid(True) + + # Plot operation modes + for i, (time, config) in enumerate(zip(timestep_start_times, operation_mode_ids)): + for actuator_id, config in config.items(): + operation_mode_id = getattr(config, "operation_mode_id", None) + if operation_mode_id: + operation_mode_name = id_to_name.get( + str(operation_mode_id), str(operation_mode_id) + ) + axs[3].scatter( + time, + operation_mode_name, + color=actuator_colors.get(operation_mode_name, "black"), + label=operation_mode_name if i == 0 else "", + ) + axs[3].set_ylabel("Operation Mode Name") + handles, labels = axs[3].get_legend_handles_labels() + by_label = dict(zip(labels, handles)) + axs[3].legend(by_label.values(), by_label.keys(), loc="upper right") + axs[3].grid(True) + + # Format the x-axis to show time and set ticks every 30 minutes + axs[3].xaxis.set_major_locator(mdates.MinuteLocator(interval=30)) + axs[3].xaxis.set_major_formatter(mdates.DateFormatter("%H:%M:%S")) + fig.autofmt_xdate() + + # Adjust layout + plt.tight_layout() + plt.show() class OperationModeProfileTree: def __init__( - self, - device_state: S2FrbcDeviceState, - profile_metadata: ProfileMetadata, - plan_due_by_date: datetime, + self, + device_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, ): self.device_state = S2FrbcDeviceStateWrapper(device_state) self.profile_metadata = profile_metadata @@ -57,14 +139,13 @@ def generate_timesteps(self) -> None: time_step_start = self.profile_metadata.get_profile_start() for i in range(self.profile_metadata.get_nr_of_timesteps()): time_step_end = ( - time_step_start + self.profile_metadata.get_timestep_duration() + time_step_start + self.profile_metadata.get_timestep_duration() ) if i == 0: time_step_start = self.plan_due_by_date system_default_timezone = time_step_start.astimezone().tzinfo - time_step_start_dt = time_step_start.astimezone( - system_default_timezone) + time_step_start_dt = time_step_start.astimezone(system_default_timezone) current_system_description = self.get_latest_before( time_step_start_dt, self.device_state.get_system_descriptions(), @@ -98,8 +179,7 @@ def generate_timesteps(self) -> None: current_usage_forecast_profile = None if current_usage_forecast: current_usage_forecast_profile = ( - UsageForecastUtil.from_storage_usage_profile( - current_usage_forecast) + UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) ) usage_forecast = self.get_usage_forecast_for_timestep( @@ -125,12 +205,11 @@ def get_latest_before(before, select_from, get_date_time): if select_from: for current in select_from: if current: - current_date_time = get_date_time(current).replace( - tzinfo=None) + current_date_time = get_date_time(current).replace(tzinfo=None) before = before.replace(tzinfo=None) if current_date_time <= before and ( - latest_before is None - or current_date_time > latest_before_date_time + latest_before is None + or current_date_time > latest_before_date_time ): latest_before = current latest_before_date_time = current_date_time @@ -138,22 +217,20 @@ def get_latest_before(before, select_from, get_date_time): @staticmethod def get_fill_level_target_for_timestep( - fill_level_target_profile: Optional[Any], - time_step_start: datetime, - time_step_end: datetime, + fill_level_target_profile: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, ) -> Optional[NumberRangeWrapper]: if not fill_level_target_profile: return None time_step_end -= timedelta(milliseconds=1) lower, upper = None, None for e in FillLevelTargetUtil.get_elements_in_range( - fill_level_target_profile, time_step_start, time_step_end + fill_level_target_profile, time_step_start, time_step_end ): - if e.lower_limit is not None and ( - lower is None or e.lower_limit > lower): + if e.lower_limit is not None and (lower is None or e.lower_limit > lower): lower = e.lower_limit - if e.upper_limit is not None and ( - upper is None or e.upper_limit < upper): + if e.upper_limit is not None and (upper is None or e.upper_limit < upper): upper = e.upper_limit if lower is None and upper is None: return None @@ -161,22 +238,29 @@ def get_fill_level_target_for_timestep( @staticmethod def get_usage_forecast_for_timestep( - usage_forecast: Optional[Any], - time_step_start: datetime, - time_step_end: datetime, + usage_forecast: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, ) -> float: if not usage_forecast: return 0 time_step_end -= timedelta(milliseconds=1) usage = 0 - usage = UsageForecastUtil.sub_profile(usage_forecast=usage_forecast, time_step_start=time_step_start, time_step_end=time_step_end) + usage = UsageForecastUtil.sub_profile( + usage_forecast=usage_forecast, + time_step_start=time_step_start, + time_step_end=time_step_end, + ) return usage def find_best_plan( - self, target_profile: Any, diff_to_min_profile: Any, - diff_to_max_profile: Any - ) -> S2FrbcPlan: + self, + target_profile: Any, + diff_to_min_profile: Any, + diff_to_max_profile: Any, + ids: Optional[dict] = None, + ) -> Tuple[S2FrbcPlan, List[datetime]]: for i, ts in enumerate(self.timesteps): ts.clear() ts.set_targets( @@ -185,14 +269,16 @@ def find_best_plan( diff_to_max_profile.get_elements()[i], ) first_timestep_index = next( - (i for i, ts in enumerate(self.timesteps) if - ts.get_system_description()), + (i for i, ts in enumerate(self.timesteps) if ts.get_system_description()), -1, ) first_timestep = self.timesteps[first_timestep_index] last_timestep = self.timesteps[-1] - state_zero = FrbcState(device_state=self.device_state, - timestep=first_timestep, present_fill_level=0) + state_zero = FrbcState( + device_state=self.device_state, + timestep=first_timestep, + present_fill_level=0, + ) state_zero.generate_next_timestep_states(first_timestep) for i in range(first_timestep_index, len(self.timesteps) - 1): @@ -204,7 +290,14 @@ def find_best_plan( end_state = self.find_best_end_state( last_timestep.get_final_states_within_fill_level_target() ) - return self.convert_to_plan(first_timestep_index, end_state) + plan = self.convert_to_plan(first_timestep_index, end_state) + # Extract only the time component from each datetime object + timestep_start_times = [ts.get_start_date() for ts in self.timesteps] + + # Now use this list in the plot function + # plot_planning_results(timestep_start_times, plan.get_energy().elements, plan.get_fill_level().elements, plan.get_operation_mode_id(), ids) + + return plan @staticmethod def find_best_end_state(states: List[FrbcState]) -> FrbcState: @@ -215,17 +308,15 @@ def find_best_end_state(states: List[FrbcState]) -> FrbcState: return best_state def convert_to_plan( - self, first_timestep_index_with_state: int, end_state: FrbcState + self, first_timestep_index_with_state: int, end_state: FrbcState ) -> S2FrbcPlan: energy: List[int] = [0] * self.profile_metadata.get_nr_of_timesteps() - fill_level: List[float] = [ - 0.0] * self.profile_metadata.get_nr_of_timesteps() - actuators: List[dict] = [ - {}] * self.profile_metadata.get_nr_of_timesteps() + fill_level: List[float] = [0.0] * self.profile_metadata.get_nr_of_timesteps() + actuators: List[dict] = [{}] * self.profile_metadata.get_nr_of_timesteps() insight_elements = [None] * self.profile_metadata.get_nr_of_timesteps() state_selection_reasons: List[str] = [ - "" - ] * self.profile_metadata.get_nr_of_timesteps() + "" + ] * self.profile_metadata.get_nr_of_timesteps() state = end_state for i in range(self.profile_metadata.get_nr_of_timesteps() - 1, -1, -1): if i >= first_timestep_index_with_state: @@ -233,16 +324,15 @@ def convert_to_plan( fill_level[i] = state.get_fill_level() actuators[i] = state.get_actuator_configurations() state_selection_reasons[ - i] = state.get_selection_reason() # type: ignore + i + ] = state.get_selection_reason() # type: ignore state = state.get_previous_state() else: energy[i] = 0 fill_level[i] = 0.0 actuators[i] = {} insight_elements[i] = None - energy[0] += ( - self.device_state.get_energy_in_current_timestep().value - ) + energy[0] += self.device_state.get_energy_in_current_timestep().value return S2FrbcPlan( False, JouleProfile( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py index 4a69ce2..ed9b070 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -133,13 +133,23 @@ def create_improved_planning( ) return proposal - def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + def create_initial_planning( + self, plan_due_by_date: datetime, ids: Optional[dict] = None + ) -> S2FrbcPlan: if self.is_storage_available(self.s2_frbc_state): - self.latest_plan = self.state_tree.find_best_plan( - TargetProfile.null_profile(self.profile_metadata), - self.null_profile, - self.null_profile, - ) + if ids is None: + self.latest_plan = self.state_tree.find_best_plan( + TargetProfile.null_profile(self.profile_metadata), + self.null_profile, + self.null_profile, + ) + else: + self.latest_plan = self.state_tree.find_best_plan( + TargetProfile.null_profile(self.profile_metadata), + self.null_profile, + self.null_profile, + ids, + ) else: self.latest_plan = S2FrbcPlan( idle=True, diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py index 333fb14..d10eb79 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py @@ -94,4 +94,4 @@ def get_actuator_statuses(self) -> List[FRBCActuatorStatus]: return self.actuator_statuses def get_storage_status(self) -> List[FRBCStorageStatus]: - return self.storage_status \ No newline at end of file + return self.storage_status diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index 77d43c3..2a21f54 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -13,14 +13,22 @@ ) from s2python.common.transition import Transition -from s2python.frbc import FRBCLeakageBehaviourElement, FRBCActuatorDescription, FRBCActuatorStatus, FRBCStorageStatus -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import S2FrbcDeviceState +from s2python.frbc import ( + FRBCLeakageBehaviourElement, + FRBCActuatorDescription, + FRBCActuatorStatus, + FRBCStorageStatus, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) + class S2FrbcDeviceStateWrapper: epsilon = 1e-4 def __init__(self, device_state): - self.device_state : S2FrbcDeviceState = device_state + self.device_state: S2FrbcDeviceState = device_state self.nr_of_buckets: int = ( device_state.get_computational_parameters().get_nr_of_buckets() ) @@ -111,7 +119,10 @@ def get_operation_mode( return None def operation_mode_uses_factor( - self, target_timestep: FrbcTimestep, actuator_id: uuid.UUID, operation_mode_id: str + self, + target_timestep: FrbcTimestep, + actuator_id: uuid.UUID, + operation_mode_id: str, ) -> bool: key = f"{actuator_id}-{operation_mode_id}" if key not in self.operation_mode_uses_factor_map: @@ -302,25 +313,17 @@ def find_leakage_element( first = leakage.elements[0] last = leakage.elements[-1] element = ( - first - if fill_level < first.fill_level_range.start_of_range - else last + first if fill_level < first.fill_level_range.start_of_range else last ) return element @staticmethod def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: fill_level_lower_limit = ( - target_timestep.get_system_description() - .storage - .fill_level_range - .start_of_range + target_timestep.get_system_description().storage.fill_level_range.start_of_range ) fill_level_upper_limit = ( - target_timestep.get_system_description() - .storage - .fill_level_range - .end_of_range + target_timestep.get_system_description().storage.fill_level_range.end_of_range ) return int( (fill_level - fill_level_lower_limit) @@ -368,8 +371,6 @@ def get_actuator_description( ), None, ) - - def get_energy_in_current_timestep(self) -> CommodityQuantity: return self.device_state.get_energy_in_current_timestep() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py index 69d1c55..f00107e 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py @@ -9,7 +9,9 @@ class S2FrbcInstructionProfile: class Element: def __init__( - self, idle: bool, actuator_configuration: Dict[uuid.UUID, S2ActuatorConfiguration] + self, + idle: bool, + actuator_configuration: Dict[uuid.UUID, S2ActuatorConfiguration], ): self.idle = idle self.actuator_configuration = actuator_configuration @@ -17,7 +19,9 @@ def __init__( def is_idle(self) -> bool: return self.idle - def get_actuator_configuration(self) -> Dict[uuid.UUID, S2ActuatorConfiguration]: + def get_actuator_configuration( + self, + ) -> Dict[uuid.UUID, S2ActuatorConfiguration]: return self.actuator_configuration def __init__( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py index 97e0ce8..9f9cbd6 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -12,7 +12,9 @@ def __init__(self, start, end, usage_rate): self.usage_rate = usage_rate def get_usage(self): - seconds = (self.end - self.start).total_seconds() + 0.001 # one milisecond added for the offeset from total_Seconds() + seconds = ( + self.end - self.start + ).total_seconds() + 0.001 # one milisecond added for the offeset from total_Seconds() return seconds * self.usage_rate def split(self, date): @@ -54,7 +56,9 @@ def from_storage_usage_profile(usage_forecast): return elements @staticmethod - def sub_profile(usage_forecast: List[UsageForecastElement], time_step_start, time_step_end): + def sub_profile( + usage_forecast: List[UsageForecastElement], time_step_start, time_step_end + ): if usage_forecast is None: return 0 diff --git a/flexmeasures_s2/profile_steering/planning_service_impl.py b/flexmeasures_s2/profile_steering/planning_service_impl.py new file mode 100644 index 0000000..41355a9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/planning_service_impl.py @@ -0,0 +1,365 @@ +from datetime import datetime +from typing import List, Dict, Any, Optional + +# Core profile steering imports +from flexmeasures_s2.profile_steering.root_planner import RootPlanner +from flexmeasures_s2.profile_steering.congestion_point_planner import ( + CongestionPointPlanner, +) + +# Common data types +from flexmeasures_s2.profile_steering.common.joule_range_profile import ( + JouleRangeProfile, +) +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +# Device planner imports +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( + S2FrbcDevicePlanner, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) + +# Import other device planners as needed +# Import statements for other device planners would go here + +# Logger setup +import logging + +logger = logging.getLogger(__name__) + + +class PlanningServiceConfig: + """Configuration for the planning service.""" + + def __init__( + self, + energy_improvement_criterion: float = 0.01, + cost_improvement_criterion: float = 0.01, + congestion_retry_iterations: int = 5, + multithreaded: bool = False, + ): + self._energy_improvement_criterion = energy_improvement_criterion + self._cost_improvement_criterion = cost_improvement_criterion + self._congestion_retry_iterations = congestion_retry_iterations + self._multithreaded = multithreaded + + def energy_improvement_criterion(self) -> float: + return self._energy_improvement_criterion + + def cost_improvement_criterion(self) -> float: + return self._cost_improvement_criterion + + def congestion_retry_iterations(self) -> int: + return self._congestion_retry_iterations + + def multithreaded(self) -> bool: + return self._multithreaded + + +class ClusterState: + """Class representing the state of a cluster of devices.""" + + def __init__(self, device_states: Dict[str, Any] = None): + self._device_states = device_states or {} + self._congestion_points = {} # Map from connection ID to congestion point ID + + def get_device_states(self) -> Dict[str, Any]: + return self._device_states + + def get_congestion_point(self, connection_id: str) -> Optional[str]: + return self._congestion_points.get(connection_id) + + def set_congestion_point(self, connection_id: str, congestion_point_id: str): + + self._congestion_points[connection_id] = congestion_point_id + + def get_congestion_points(self) -> List[str]: + return list(set(self._congestion_points.values())) + + +class ClusterTarget: + """Class representing a target for a cluster.""" + + def __init__(self, generated_at: datetime, parent_id: Any, generated_by: Any, global_target_profile: TargetProfile, congestion_point_targets: Optional[Dict[str, JouleRangeProfile]] = None) -> None: + self._generated_at = generated_at + self._parent_id = parent_id + self._generated_by = generated_by + self._global_target_profile = global_target_profile + self._congestion_point_targets = congestion_point_targets + if congestion_point_targets is not None: + for congestion_point_id, congestion_point_target in congestion_point_targets.items(): + if not congestion_point_target.is_compatible(global_target_profile): + raise ValueError(f"Congestion point target {congestion_point_id} is not compatible with the global target profile") + + def get_global_target_profile(self) -> Any: + return self._global_target_profile + + def get_profile_metadata(self) -> Any: + return self._global_target_profile.get_profile_metadata() + + def get_congestion_point_target( + self, congestion_point_id: str + ) -> Optional[JouleRangeProfile]: + if self._congestion_point_targets is None: + return None + return self._congestion_point_targets.get(congestion_point_id) + + def get_congestion_point_targets(self) -> Dict[str, JouleRangeProfile]: + if self._congestion_point_targets is None: + return {} + return self._congestion_point_targets + + def set_congestion_point_target(self, congestion_point_id: str, congestion_point_target: JouleRangeProfile): + if self._congestion_point_targets is None: + self._congestion_point_targets = {} + self._congestion_point_targets[congestion_point_id] = congestion_point_target + + +class DevicePlan: + """Class representing a plan for a device.""" + + def __init__(self, device_id: str, profile: JouleProfile): + self._device_id = device_id + self._profile = profile + + def get_device_id(self) -> str: + return self._device_id + + def get_profile(self) -> JouleProfile: + return self._profile + + +class ClusterPlanData: + """Class representing planning data for a cluster.""" + + def __init__(self, device_plans: List[DevicePlan], profile_metadata: Any): + self._device_plans = device_plans + self._profile_metadata = profile_metadata + + def get_device_plans(self) -> List[DevicePlan]: + return self._device_plans + + def get_profile_metadata(self) -> Any: + return self._profile_metadata + + +class ClusterPlan: + """Class representing a plan for a cluster.""" + + def __init__( + self, + state: ClusterState, + target: ClusterTarget, + plan_data: ClusterPlanData, + reason: str, + plan_due_by_date: datetime, + parent_plan: Optional["ClusterPlan"] = None, + ): + self._state = state + self._target = target + self._plan_data = plan_data + self._reason = reason + self._plan_due_by_date = plan_due_by_date + self._parent_plan = parent_plan + + def get_state(self) -> ClusterState: + return self._state + + def get_target(self) -> ClusterTarget: + return self._target + + def get_plan_data(self) -> ClusterPlanData: + return self._plan_data + + def get_reason(self) -> str: + return self._reason + + def get_plan_due_by_date(self) -> datetime: + return self._plan_due_by_date + + def get_parent_plan(self) -> Optional["ClusterPlan"]: + return self._parent_plan + + +class PlanningService: + """Interface for planning services.""" + + def plan( + self, + state: ClusterState, + target: ClusterTarget, + planning_window: int, + reason: str, + plan_due_by_date: datetime, + optimize_for_target: bool, + max_priority_class: int, + ) -> ClusterPlan: + """Create a plan for the cluster.""" + raise NotImplementedError("Subclasses must implement this method") + + +class PlanningServiceImpl(PlanningService): + """Implementation of the planning service.""" + + DEFAULT_CONGESTION_POINT = "" + + def __init__(self, config: PlanningServiceConfig, context: Any = None): + """Initialize the planning service. + + Args: + config: Configuration for the planning service + context: Execution context (used for multithreading) + """ + self.config = config + self.context = context + logger.info("Planning service initialized") + + def get_congestion_point( + self, cluster_state: ClusterState, connection_id: str + ) -> str: + """Get the congestion point for a connection ID. + + Args: + cluster_state: The state of the cluster + connection_id: The connection ID to get the congestion point for + + Returns: + The congestion point ID, or DEFAULT_CONGESTION_POINT if none is assigned + """ + congestion_point = cluster_state.get_congestion_point(connection_id) + if congestion_point is None: + # This can happen if a device has no congestion point assigned yet. + # We handle this by giving them all the empty congestion point. + return self.DEFAULT_CONGESTION_POINT + return congestion_point + + def create_controller_tree( + self, + cluster_state: ClusterState, + target: ClusterTarget, + plan_due_by_date: datetime, + ) -> RootPlanner: + """Create a tree of controllers for planning. + + Args: + cluster_state: The state of the cluster + target: The target for the cluster + plan_due_by_date: The date by which planning must be completed + + Returns: + A RootPlanner with appropriate device planners added + """ + root_planner = RootPlanner( + target.get_global_target_profile(), + self.config.energy_improvement_criterion(), + self.config.cost_improvement_criterion(), + self.context, + ) + + for device_id, device_state in cluster_state.get_device_states().items(): + congestion_point = self.get_congestion_point( + cluster_state, device_state.get_connection_id() + ) + cpc = root_planner.get_congestion_point_controller(congestion_point) + + if cpc is None: + # Create a new congestion point controller if one doesn't exist yet + congestion_point_target = target.get_congestion_point_target( + congestion_point + ) + if congestion_point == self.DEFAULT_CONGESTION_POINT: + # This is a dummy congestion point. We will give it an empty profile. + congestion_point_target = JouleRangeProfile( + target.get_global_target_profile().get_profile_metadata() + ) + + cpc = CongestionPointPlanner(congestion_point, congestion_point_target) + root_planner.add_congestion_point_controller(cpc) + + # Add the appropriate device planner based on the device state type + if isinstance(device_state, S2FrbcDeviceState): + logger.debug("S2 FRBC planner created!") + cpc.add_device_controller( + S2FrbcDevicePlanner( + device_state, target.get_profile_metadata(), plan_due_by_date + ) + ) + # Add other device types here as needed + else: + logger.warning( + f"Unknown device! No device planner added for {device_state}" + ) + + return root_planner + + def plan( + self, + state: ClusterState, + target: ClusterTarget, + planning_window: int, + reason: str, + plan_due_by_date: datetime, + optimize_for_target: bool, + max_priority_class: int, + ) -> ClusterPlan: + """Create a plan for the cluster. + + Args: + state: The state of the cluster + target: The target for the cluster + planning_window: The planning window in seconds + reason: The reason for planning + plan_due_by_date: The date by which planning must be completed + optimize_for_target: Whether to optimize for the target + max_priority_class: The maximum priority class to optimize + + Returns: + A ClusterPlan for the cluster + """ + start_time = datetime.now() + + # Make sure that all congestion points in the ClusterState have a target: + for cp in state.get_congestion_points(): + congestion_point_target = target.get_congestion_point_target(cp) + if congestion_point_target is None and cp is not None: + # We don't have a target for the congestion point + logger.warning( + f"CongestionPoint without target! CongestionPoint: {cp}. Generating empty target." + ) + target.set_congestion_point_target_global_target(cp, JouleRangeProfile( + target.get_global_target_profile().get_profile_metadata() + )) + + # Create a tree of controllers and run the planning algorithm + root_controller = self.create_controller_tree(state, target, plan_due_by_date) + + try: + root_controller.plan( + plan_due_by_date, + optimize_for_target, + max_priority_class, + self.config.multithreaded(), + ) + + # Collect device plans + device_plans = [] + for cpc in root_controller.cp_controllers: + for device in cpc.get_device_controllers(): + device_plans.append(device.get_device_plan()) + + # Create and return the cluster plan + plan_data = ClusterPlanData(device_plans, target.get_profile_metadata()) + plan = ClusterPlan(state, target, plan_data, reason, plan_due_by_date, None) + + end_time = datetime.now() + execution_time = ( + end_time - start_time + ).total_seconds() * 1000 # Convert to milliseconds + logger.info(f"Generated new plan in {execution_time} ms") + + return plan + except Exception as e: + logger.error(f"Error during planning: {e}") + raise diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py index 859740d..2d7fb30 100644 --- a/flexmeasures_s2/profile_steering/root_planner.py +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -2,15 +2,15 @@ from datetime import datetime from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from .congestion_point_planner import CongestionPointPlanner -from .proposal import Proposal - +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile class RootPlanner: MAX_ITERATIONS = 1000 def __init__( self, - target: Any, + target: TargetProfile, energy_iteration_criterion: float, cost_iteration_criterion: float, context: Any, @@ -29,15 +29,15 @@ def __init__( # Create an empty JouleProfile. # We assume that target exposes get_profile_start(), timestep_duration and nr_of_timesteps. self.empty_profile = JouleProfile( - self.target.get_profile_start(), - self.target.timestep_duration, - elements=[0] * self.target.nr_of_timesteps, + self.target.get_profile_metadata().get_profile_start(), + self.target.get_profile_metadata().get_timestep_duration(), + elements=[0] * self.target.get_profile_metadata().get_nr_of_timesteps(), ) self.cp_controllers: List[CongestionPointPlanner] = [] self.root_ctrl_planning = self.empty_profile def remove_null_values(self, target: Any) -> Any: - # Stub: simply return the target. + # TODO: Stub: simply return the target. # In a full implementation, you would remove or replace null elements. return target diff --git a/flexmeasures_s2/profile_steering/tests/plot_utils.py b/flexmeasures_s2/profile_steering/tests/plot_utils.py new file mode 100644 index 0000000..dcb55d0 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/plot_utils.py @@ -0,0 +1,22 @@ +# Write a function to plot two given values against each other in a bar chart +# the values are the execution time of the create_initial_planning function +# the two values are the execution time of the Java and the execution time of the Python version +# the values are in seconds +from matplotlib import pyplot as plt + + +def plot_values(java_time, python_time): + # Create a bar chart with the execution times + # make the bars different colors + # show the values on the bars + plt.bar(["Java", "Python"], [java_time, python_time], color=["red", "blue"]) + # show the values on the bars + for i, v in enumerate([java_time, python_time]): + plt.text(i, v, str(v), ha="center", va="bottom") + plt.title("Execution time of create_initial_planning") + plt.xlabel("Language") + plt.ylabel("Time (seconds)") + plt.show() + + +plot_values(0.231, 0.199840) diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index cd32bed..07972bd 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -2,6 +2,8 @@ from datetime import datetime, timedelta, timezone import uuid import logging +import time +import functools from s2python.frbc.frbc_actuator_description import FRBCActuatorDescription from s2python.frbc.frbc_fill_level_target_profile_element import ( FRBCFillLevelTargetProfileElement, @@ -29,40 +31,54 @@ from s2python.common import Timer from s2python.common import PowerValue from s2python.common import Commodity -from joule_profile_example import get_JouleProfileTarget +from flexmeasures_s2.profile_steering.tests.joule_profile_example import get_JouleProfileTarget +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import DevicePlanner +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.planning_service_impl import ( + PlanningServiceImpl, + PlanningServiceConfig, + ClusterState, + ClusterTarget, +) # Global variables to store IDs for debugging -charge_actuator_id = None -id_on_operation_mode = None -id_off_operation_mode = None -id_on_to_off_timer = None -id_off_to_on_timer = None - - -def test_connexxion_ev_bus_baseline_byd_225(): - # Arrange - device_id = "01-01-70.225" - omloop_starts_at = datetime.fromtimestamp(3600) - cet = timezone(timedelta(hours=1)) - charge_power_soc_percentage_per_second_night = 0.0054012349 - charging_power_kw_night = 28 - - charge_power_soc_percentage_per_second_day = 0.01099537114 - charging_power_kw_day = 57 - - # Create system descriptions and forecasts - - start_of_recharge1 = omloop_starts_at.astimezone(cet) - recharge_duration1 = timedelta(hours=7, minutes=13) - soc_percentage_before_charging1 = 0 - final_fill_level_target1 = 100 +# make a list of tuples with the ids and the names +ids = [] + + +import matplotlib.pyplot as plt + + +def create_ev_device_state( + device_id: str, + omloop_starts_at: datetime, + cet: timezone, + charge_power_soc_percentage_per_second_night: float, + charging_power_kw_night: float, + charge_power_soc_percentage_per_second_day: float, + charging_power_kw_day: float, + soc_percentage_before_charging1: float, + final_fill_level_target1: float, + recharge_duration1: timedelta, + start_of_recharge1: datetime, + drive_duration1: timedelta, + start_of_drive1: datetime, + drive_consume_soc_per_second1: float, + soc_percentage_before_driving1: float, + soc_percentage_before_charging2: float, + final_fill_level_target2: float, + recharge_duration2: timedelta, + start_of_recharge2: datetime, +) -> S2FrbcDeviceState: # Create system description - recharge_system_description1, charge_actuator_status1, storage_status1 = create_recharge_system_description( - start_of_recharge=start_of_recharge1, - charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, - charging_power_kw=charging_power_kw_night, - soc_percentage_before_charging=soc_percentage_before_charging1, + recharge_system_description1, charge_actuator_status1, storage_status1 = ( + create_recharge_system_description( + start_of_recharge=start_of_recharge1, + charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, + charging_power_kw=charging_power_kw_night, + soc_percentage_before_charging=soc_percentage_before_charging1, + ) ) # Create leakage behaviour @@ -81,30 +97,22 @@ def test_connexxion_ev_bus_baseline_byd_225(): soc_percentage_before_charging1, ) - # Create system description for driving - - start_of_drive1 = start_of_recharge1 + recharge_duration1 - drive_duration1 = timedelta(hours=4, minutes=36) - drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 - soc_percentage_before_driving1 = 100 - - drive_system_description1, off_actuator_status1, storage_status1 = create_driving_system_description( - start_of_drive1, soc_percentage_before_driving1 + drive_system_description1, off_actuator_status1, storage_status1 = ( + create_driving_system_description( + start_of_drive1, soc_percentage_before_driving1 + ) ) drive_usage_forecast1 = create_driving_usage_forecast( start_of_drive1, drive_duration1, drive_consume_soc_per_second1 ) - start_of_recharge2 = start_of_drive1 + drive_duration1 - recharge_duration2 = timedelta(seconds=5360) - soc_percentage_before_charging2 = 37.7463951 - final_fill_level_target2 = 94.4825134 - - recharge_system_description2, charge_actuator_status2, storage_status2 = create_recharge_system_description( - start_of_recharge2, - charge_power_soc_percentage_per_second_day, - charging_power_kw_day, - soc_percentage_before_charging2, + recharge_system_description2, charge_actuator_status2, storage_status2 = ( + create_recharge_system_description( + start_of_recharge2, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging2, + ) ) recharge_leakage2 = create_recharge_leakage_behaviour(start_of_recharge2) recharge_usage_forecast2 = create_recharge_usage_forecast( @@ -144,23 +152,106 @@ def test_connexxion_ev_bus_baseline_byd_225(): recharge_fill_level_target2, ], computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, 20), - actuator_statuses=[off_actuator_status1, charge_actuator_status1, charge_actuator_status2], + actuator_statuses=[ + off_actuator_status1, + charge_actuator_status1, + charge_actuator_status2, + ], storage_status=[storage_status1, storage_status2], ) - epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) - target_metadata = ProfileMetadata( - profile_start=epoch_time, - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, - ) - - plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - - planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) - planning = planner.create_initial_planning(plan_due_by_date) - # print(planning.elements) - assert planning.elements == get_JouleProfileTarget() - + return device_state + +# +# def test_connexxion_ev_bus_baseline_byd_225(): +# # Arrange +# device_id = "01-01-70.225" +# omloop_starts_at = datetime.fromtimestamp(3600) +# cet = timezone(timedelta(hours=1)) +# charge_power_soc_percentage_per_second_night = 0.0054012349 +# charging_power_kw_night = 28 +# +# charge_power_soc_percentage_per_second_day = 0.01099537114 +# charging_power_kw_day = 57 +# +# # Create system descriptions and forecasts +# +# start_of_recharge1 = omloop_starts_at.astimezone(cet) +# recharge_duration1 = timedelta(hours=7, minutes=13) +# soc_percentage_before_charging1 = 0 +# final_fill_level_target1 = 100 +# +# # Create system description for driving +# +# start_of_drive1 = start_of_recharge1 + recharge_duration1 +# drive_duration1 = timedelta(hours=4, minutes=36) +# drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 +# soc_percentage_before_driving1 = 100 +# +# start_of_recharge2 = start_of_drive1 + drive_duration1 +# recharge_duration2 = timedelta(seconds=5360) +# soc_percentage_before_charging2 = 37.7463951 +# final_fill_level_target2 = 94.4825134 +# +# device_state = create_ev_device_state( +# device_id, +# omloop_starts_at, +# cet, +# charge_power_soc_percentage_per_second_night, +# charging_power_kw_night, +# charge_power_soc_percentage_per_second_day, +# charging_power_kw_day, +# soc_percentage_before_charging1, +# final_fill_level_target1, +# recharge_duration1, +# start_of_recharge1, +# drive_duration1, +# start_of_drive1, +# drive_consume_soc_per_second1, +# soc_percentage_before_driving1, +# soc_percentage_before_charging2, +# final_fill_level_target2, +# recharge_duration2, +# start_of_recharge2, +# ) +# +# epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) +# target_metadata = ProfileMetadata( +# profile_start=epoch_time, +# timestep_duration=timedelta(seconds=300), +# nr_of_timesteps=288, +# ) +# +# plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) +# +# planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) +# +# # Start timing +# import time +# +# # Number of iterations +# num_iterations = 1 +# total_time = 0 +# +# # Run the function multiple times and measure execution time +# for i in range(num_iterations): +# start_time = time.time() +# planning = planner.create_initial_planning(plan_due_by_date, ids) +# end_time = time.time() +# execution_time = end_time - start_time +# total_time += execution_time +# +# # Print progress every 1000 iterations +# +# print(f"Completed {i + 1} iterations") +# +# # Calculate and print average execution time +# average_execution_time = total_time / num_iterations +# print( +# f"Average execution time over {num_iterations} iterations: {average_execution_time:.6f} seconds" +# ) +# print(planning.elements) +# assert planning.elements == get_JouleProfileTarget() +# @staticmethod def create_recharge_system_description( @@ -186,7 +277,8 @@ def create_recharge_system_description( ], ) id_on_operation_mode = str(uuid.uuid4()) - # logging.debug(f"id_on_operation_mode: {id_on_operation_mode}") + logging.debug(f"id_on_operation_mode: {id_on_operation_mode}") + ids.append((id_on_operation_mode, "charge_on_operation_mode")) on_operation_mode = FRBCOperationMode( id=id_on_operation_mode, diagnostic_label="charge.on", @@ -205,7 +297,8 @@ def create_recharge_system_description( ], ) id_off_operation_mode = str(uuid.uuid4()) - # logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") + logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") + ids.append((id_off_operation_mode, "charge_off_operation_mode")) off_operation_mode = FRBCOperationMode( id=id_off_operation_mode, diagnostic_label="charge.off", @@ -214,21 +307,26 @@ def create_recharge_system_description( ) id_on_to_off_timer = str(uuid.uuid4()) - # logging.debug(f"id_on_to_off_timer: {id_on_to_off_timer}") + logging.debug(f"id_on_to_off_timer: {id_on_to_off_timer}") + ids.append((id_on_to_off_timer, "charge_on_to_off_timer")) on_to_off_timer = Timer( id=id_on_to_off_timer, - diagnostic_label="on.to.off.timer", + diagnostic_label="charge_on.to.off.timer", duration=Duration(30), ) id_off_to_on_timer = str(uuid.uuid4()) - # logging.debug(f"id_off_to_on_timer: {id_off_to_on_timer}") + logging.debug(f"id_off_to_on_timer: {id_off_to_on_timer}") + ids.append((id_off_to_on_timer, "charge_off_to_on_timer")) off_to_on_timer = Timer( id=id_off_to_on_timer, - diagnostic_label="off.to.on.timer", + diagnostic_label="charge_off.to.on.timer", duration=Duration(30), ) transition_id_from_on_to_off = str(uuid.uuid4()) - # logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") + logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") + ids.append( + (transition_id_from_on_to_off, "transition_from_charge_on_to_charge_off") + ) transition_from_on_to_off = Transition( id=transition_id_from_on_to_off, **{"from": id_on_operation_mode}, @@ -236,10 +334,13 @@ def create_recharge_system_description( start_timers=[id_off_to_on_timer], blocking_timers=[id_on_to_off_timer], transition_duration=None, - abnormal_condition_only=False + abnormal_condition_only=False, ) transition_id_from_off_to_on = str(uuid.uuid4()) - # logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") + logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") + ids.append( + (transition_id_from_off_to_on, "transition_from_charge_off_to_charge_on") + ) transition_from_off_to_on = Transition( id=transition_id_from_off_to_on, **{"from": id_off_operation_mode}, @@ -247,12 +348,13 @@ def create_recharge_system_description( start_timers=[id_on_to_off_timer], blocking_timers=[id_off_to_on_timer], transition_duration=None, - abnormal_condition_only=False + abnormal_condition_only=False, ) charge_actuator_id = str(uuid.uuid4()) - # logging.debug(f"charge_actuator_id: {charge_actuator_id}") + logging.debug(f"charge_actuator_id: {charge_actuator_id}") + ids.append((charge_actuator_id, "charge_actuator")) charge_actuator_status = FRBCActuatorStatus( - message_id=str(uuid.uuid4()), + message_id=charge_actuator_id, actuator_id=charge_actuator_id, active_operation_mode_id=id_on_operation_mode, operation_mode_factor=0, @@ -267,7 +369,8 @@ def create_recharge_system_description( supported_commodities=[Commodity.ELECTRICITY], ) storage_status_id = str(uuid.uuid4()) - # logging.debug(f"storage_status_id: {storage_status_id}") + logging.debug(f"storage_status_id: {storage_status_id}") + ids.append((storage_status_id, "storage_status")) storage_status = FRBCStorageStatus( message_id=storage_status_id, present_fill_level=soc_percentage_before_charging ) @@ -291,9 +394,11 @@ def create_recharge_system_description( return frbc_system_description, charge_actuator_status, storage_status +@staticmethod def create_recharge_leakage_behaviour(start_of_recharge): leakage_id = str(uuid.uuid4()) - # logging.debug(f"leakage_id: {leakage_id}") + logging.debug(f"leakage_id: {leakage_id}") + ids.append((leakage_id, "leakage")) return FRBCLeakageBehaviour( message_id=leakage_id, valid_from=start_of_recharge, @@ -306,12 +411,14 @@ def create_recharge_leakage_behaviour(start_of_recharge): ) +@staticmethod def create_recharge_usage_forecast(start_of_recharge, recharge_duration): no_usage = FRBCUsageForecastElement( duration=int(recharge_duration.total_seconds()), usage_rate_expected=0 ) usage_id = str(uuid.uuid4()) - # logging.debug(f"usage_id: {usage_id}") + logging.debug(f"usage_id: {usage_id}") + ids.append((usage_id, "usage")) return FRBCUsageForecast( message_id=usage_id, start_time=start_of_recharge, elements=[no_usage] ) @@ -337,7 +444,8 @@ def create_recharge_fill_level_target_profile( ), ) fill_level_id = str(uuid.uuid4()) - # logging.debug(f"fill_level_id: {fill_level_id}") + logging.debug(f"fill_level_id: {fill_level_id}") + ids.append((fill_level_id, "fill_level")) return FRBCFillLevelTargetProfile( message_id=fill_level_id, start_time=start_of_recharge, @@ -360,7 +468,8 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv ], ) id_off_operation_mode = str(uuid.uuid4()) - # logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") + logging.debug(f"operation_mode_driving: {id_off_operation_mode}") + ids.append((id_off_operation_mode, "operation_mode_driving")) off_operation_mode = FRBCOperationMode( id=id_off_operation_mode, diagnostic_label="off", @@ -368,7 +477,8 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv abnormal_condition_only=False, ) off_actuator_id = str(uuid.uuid4()) - # logging.debug(f"off_actuator_id: {off_actuator_id}") + logging.debug(f"actuator_driving: {off_actuator_id}") + ids.append((off_actuator_id, "actuator_driving")) off_actuator_status = FRBCActuatorStatus( message_id=str(uuid.uuid4()), actuator_id=off_actuator_id, @@ -394,12 +504,16 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv provides_usage_forecast=False, fill_level_range=NumberRange(start_of_range=0, end_of_range=100), ) - return FRBCSystemDescription( - message_id=str(uuid.uuid4()), - valid_from=start_of_drive, - actuators=[off_actuator], - storage=storage_description, - ), off_actuator_status, storage_status + return ( + FRBCSystemDescription( + message_id=str(uuid.uuid4()), + valid_from=start_of_drive, + actuators=[off_actuator], + storage=storage_description, + ), + off_actuator_status, + storage_status, + ) @staticmethod @@ -413,3 +527,140 @@ def create_driving_usage_forecast( return FRBCUsageForecast( message_id=str(uuid.uuid4()), start_time=start_of_driving, elements=[no_usage] ) + + +def test_planning_service_impl_with_ev_device(): + """Test the PlanningServiceImpl with an EV device.""" + # Arrange + device_id = "ev-test-01" + omloop_starts_at = datetime.fromtimestamp(3600) + cet = timezone(timedelta(hours=1)) + + # Device charging parameters + charge_power_soc_percentage_per_second_night = 0.0054012349 + charging_power_kw_night = 28 + charge_power_soc_percentage_per_second_day = 0.01099537114 + charging_power_kw_day = 57 + + # First recharge period + start_of_recharge1 = omloop_starts_at.astimezone(cet) + recharge_duration1 = timedelta(hours=7, minutes=13) + soc_percentage_before_charging1 = 0 + final_fill_level_target1 = 100 + + # Driving period + start_of_drive1 = start_of_recharge1 + recharge_duration1 + drive_duration1 = timedelta(hours=4, minutes=36) + drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 + soc_percentage_before_driving1 = 100 + + # Second recharge period + start_of_recharge2 = start_of_drive1 + drive_duration1 + recharge_duration2 = timedelta(seconds=5360) + soc_percentage_before_charging2 = 37.7463951 + final_fill_level_target2 = 94.4825134 + + # Create the device state + device_state = create_ev_device_state( + device_id, + omloop_starts_at, + cet, + charge_power_soc_percentage_per_second_night, + charging_power_kw_night, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging1, + final_fill_level_target1, + recharge_duration1, + start_of_recharge1, + drive_duration1, + start_of_drive1, + drive_consume_soc_per_second1, + soc_percentage_before_driving1, + soc_percentage_before_charging2, + final_fill_level_target2, + recharge_duration2, + start_of_recharge2, + ) + + # Create profile metadata + epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) + target_metadata = ProfileMetadata( + profile_start=epoch_time, + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288, + ) + + # Create a target profile + global_target_profile = JouleProfile( + profile_start=target_metadata.get_profile_start(), + timestep_duration=target_metadata.get_timestep_duration(), + elements=get_JouleProfileTarget(), + ) + + # Create planning service config + config = PlanningServiceConfig( + energy_improvement_criterion=0.01, + cost_improvement_criterion=0.01, + congestion_retry_iterations=5, + multithreaded=False, + ) + + # Create planning service implementation + service = PlanningServiceImpl(config) + + # Create cluster state with device + cluster_state = ClusterState() + cluster_state.get_device_states()[device_id] = device_state + cluster_state.set_congestion_point(device_state.get_connection_id(), "") + + # Create cluster target + cluster_target = ClusterTarget(datetime.now(), None, None, global_target_profile) + + # Set due by date for planning + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + + # Act - Generate a plan + start_time = time.time() + cluster_plan = service.plan( + state=cluster_state, + target=cluster_target, + planning_window=300 * 288, # Full planning window in seconds + reason="Testing EV planning", + plan_due_by_date=plan_due_by_date, + optimize_for_target=True, + max_priority_class=1, + ) + end_time = time.time() + execution_time = end_time - start_time + + # Log information + print(f"Plan generated in {execution_time:.2f} seconds") + + # Assert + assert cluster_plan is not None + + # Get the plan for our device + device_plans = cluster_plan.get_plan_data().get_device_plans() + device_plan = next((p for p in device_plans if p.get_device_id() == device_id), None) + + # Assert that we got a plan for our device + assert device_plan is not None + + # Print and verify the energy profile + energy_profile = device_plan.get_profile() + print(f"Energy profile has {len(energy_profile.elements)} elements") + + # Print the first few elements to verify the plan + print("First 10 energy profile elements:") + for i in range(min(10, len(energy_profile.elements))): + print(f" Timestep {i}: {energy_profile.elements[i]} joules") + + # Basic assertion - the energy profile should have the expected number of elements + assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() + + # You could add more specific assertions based on expected behavior + +# Main function +if __name__ == "__main__": + test_planning_service_impl_with_ev_device() diff --git a/requirements/testi.txt b/requirements/testi.txt index 2e2b688..c481ebb 100644 --- a/requirements/testi.txt +++ b/requirements/testi.txt @@ -1,26 +1,25 @@ -------------------------------- live log call --------------------------------- -DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 40f02a1a-b71f-4b13-b4db-d6615cdc7632 -DEBUG root:test_frbc_device.py:208 id_off_operation_mode: 47084817-e501-40d0-9f81-406fce9032fc -DEBUG root:test_frbc_device.py:217 id_on_to_off_timer: 1feeb7b7-e678-4cc6-8c6f-d41c46d88407 -DEBUG root:test_frbc_device.py:224 id_off_to_on_timer: 94d57718-9476-4d5b-94b5-c76c2255a4e5 -DEBUG root:test_frbc_device.py:231 transition_id_from_on_to_off: 8570120b-48d0-42a3-b42f-985c61c8c349 -DEBUG root:test_frbc_device.py:242 transition_id_from_off_to_on: b9ff11b2-b30b-461c-bb07-614f01028043 -DEBUG root:test_frbc_device.py:253 charge_actuator_id: a789ccf2-421a-401a-bc17-bb3cda046a7c -DEBUG root:test_frbc_device.py:270 storage_status_id: 75c172de-c979-46a0-94fb-bd1094574e76 -DEBUG root:test_frbc_device.py:296 leakage_id: 419d990c-59c6-4730-9d50-d76e2306b473 -DEBUG root:test_frbc_device.py:314 usage_id: 8b2d5a37-99f3-461b-9b27-9cdc4b94579b -DEBUG root:test_frbc_device.py:340 fill_level_id: 31b2b09e-0cc2-43be-8508-c62ac476a73f -DEBUG root:test_frbc_device.py:363 id_off_operation_mode: 4556efd8-7100-4e6a-97a0-a547bafe8635 -DEBUG root:test_frbc_device.py:371 off_actuator_id: 8776272a-b248-4f46-bca9-e1a9ed12c062 -DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 7ad73695-de85-4418-924d-9c8a7978e533 -DEBUG root:test_frbc_device.py:208 id_off_operation_mode: bdfef5ff-92c4-423b-8732-2e69592b69c6 -DEBUG root:test_frbc_device.py:217 id_on_to_off_timer: 0f7715ee-ae0d-4e96-8f0a-7425458f94b7 -DEBUG root:test_frbc_device.py:224 id_off_to_on_timer: ff2a07a4-1ac2-4f26-b6ce-9aecbc881e03 -DEBUG root:test_frbc_device.py:231 transition_id_from_on_to_off: 8291c6da-651d-4b71-9551-05648423a4f5 -DEBUG root:test_frbc_device.py:242 transition_id_from_off_to_on: f00c941b-f841-455e-b5f2-0060fb1471ff -DEBUG root:test_frbc_device.py:253 charge_actuator_id: 3f2b289f-d99c-40f7-bdbb-ac990e862b6b -DEBUG root:test_frbc_device.py:270 storage_status_id: b400ada9-c7ac-474d-ab4c-07d293877eed -DEBUG root:test_frbc_device.py:296 leakage_id: f924bdd5-b86e-49b8-a5a4-17b1ede0a070 -DEBUG root:test_frbc_device.py:314 usage_id: a7dc2f34-ab08-45c3-81bf-5acee9f03f98 -DEBUG root:test_frbc_device.py:340 fill_level_id: 4957ee14-db91-4d2f-a8b6-2c5204123758 -Start \ No newline at end of file +test_frbc_device.py::test_connexxion_ev_bus_baseline_byd_225 +-------------------------------- live log call --------------------------------- +DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 8c46733e-0c68-4175-85db-4e28ef11ecf9 +DEBUG root:test_frbc_device.py:209 id_off_operation_mode: bbc4e2c2-599b-411b-b987-858d148846a4 +DEBUG root:test_frbc_device.py:219 id_on_to_off_timer: bcafc296-929e-4973-b447-bc18f7d3ceb3 +DEBUG root:test_frbc_device.py:227 id_off_to_on_timer: 412f76c3-6bb1-4654-b9c2-d31e50492987 +DEBUG root:test_frbc_device.py:235 transition_id_from_on_to_off: 5b286161-3f7f-43f6-b019-b3c808c2d376 +DEBUG root:test_frbc_device.py:247 transition_id_from_off_to_on: 24e5c3d3-4d7f-4c7e-a598-7c096f27083b +DEBUG root:test_frbc_device.py:259 charge_actuator_id: 91b16e98-47b1-463a-b679-f5baf6ee8cb7 +DEBUG root:test_frbc_device.py:277 storage_status_id: 41f861c7-f9b7-46bb-94c0-1e131170bcbd +DEBUG root:test_frbc_device.py:305 leakage_id: 14dac666-eb11-4acb-a5ec-400a051cd1b4 +DEBUG root:test_frbc_device.py:324 usage_id: 351fb97b-67e7-4901-9fcd-485cef127b0c +DEBUG root:test_frbc_device.py:351 fill_level_id: 632d6d5f-efb9-48dd-b22e-f08db900d956 +DEBUG root:test_frbc_device.py:375 id_off_operation_mode_driving: b99c327d-8866-46be-9514-32851ccb50ef +DEBUG root:test_frbc_device.py:384 off_actuator_id_driving: 8e1dc01b-4b8b-426b-a98a-d9f0cabe3503 +DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 74e2d319-6fe4-4a0f-add4-e2709f2e21e0 +DEBUG root:test_frbc_device.py:209 id_off_operation_mode: 4a7f2a5a-d519-4803-8719-7f3d22ade46c +DEBUG root:test_frbc_device.py:219 id_on_to_off_timer: 5c33e567-213a-4b2f-8575-808ea27b79f7 +DEBUG root:test_frbc_device.py:227 id_off_to_on_timer: 83962f5e-5e0f-4173-88de-2ec1e0eabcd0 +DEBUG root:test_frbc_device.py:235 transition_id_from_on_to_off: a65929ed-f7cd-4e7b-860d-9bfd68be9d6b +DEBUG root:test_frbc_device.py:247 transition_id_from_off_to_on: 5c3e73cc-1b8e-4c6c-87d6-1ba076daeacb +DEBUG root:test_frbc_device.py:259 charge_actuator_id: 3e728f7a-82c7-4a44-a1ea-7f8a220b8ed7 +DEBUG root:test_frbc_device.py:277 storage_status_id: 38abda5b-6774-439d-a319-2a50671595bb +DEBUG root:test_frbc_device.py:305 leakage_id: 2ba72dcf-546d-45a2-9c87-1492437dd2c9 +DEBUG root:test_frbc_device.py:324 usage_id: d3132d10-e226-4763-adae-bd9492f8251d \ No newline at end of file From 2fbda156a599d58e6a083214b5b20224fc921742 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Mar 2025 14:47:47 +0100 Subject: [PATCH 23/33] Plan is being created Signed-off-by: Vlad Iftime --- .../common/joule_range_profile.py | 18 +- .../congestion_point_planner.py | 4 +- .../profile_steering/planning_service_impl.py | 49 ++++-- .../profile_steering/root_planner.py | 5 +- .../tests/test_frbc_device.py | 166 ++++++++++-------- 5 files changed, 143 insertions(+), 99 deletions(-) diff --git a/flexmeasures_s2/profile_steering/common/joule_range_profile.py b/flexmeasures_s2/profile_steering/common/joule_range_profile.py index 42bc39e..b8c5b16 100644 --- a/flexmeasures_s2/profile_steering/common/joule_range_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_range_profile.py @@ -61,14 +61,12 @@ def __init__( """ if isinstance(profile_start, ProfileMetadata): metadata = profile_start - if elements is not None: - pass # Use provided elements - elif min_value is not None or max_value is not None: - elements = self._create_element_array( - metadata.get_nr_of_timesteps(), min_value, max_value + if nr_of_timesteps is None: + nr_of_timesteps = metadata.get_nr_of_timesteps() + elements = self._create_element_array( + nr_of_timesteps, min_value, max_value ) - else: - elements = [] + else: if elements is not None: metadata = ProfileMetadata( @@ -233,11 +231,9 @@ def is_compatible(self, other: AbstractProfile) -> bool: Returns: True if compatible, False otherwise - + """ - return ( - self.metadata == other.get_profile_metadata() - ) + return self.metadata == other.get_profile_metadata() def __str__(self) -> str: """Return a string representation of this profile.""" diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index 65862dc..f88ed84 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -5,7 +5,9 @@ JouleRangeProfile, ) from flexmeasures_s2.profile_steering.common.proposal import Proposal -from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import DevicePlanner +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) class CongestionPointPlanner: diff --git a/flexmeasures_s2/profile_steering/planning_service_impl.py b/flexmeasures_s2/profile_steering/planning_service_impl.py index 41355a9..9623fa8 100644 --- a/flexmeasures_s2/profile_steering/planning_service_impl.py +++ b/flexmeasures_s2/profile_steering/planning_service_impl.py @@ -13,6 +13,7 @@ ) from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile + # Device planner imports from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( S2FrbcDevicePlanner, @@ -72,7 +73,6 @@ def get_congestion_point(self, connection_id: str) -> Optional[str]: return self._congestion_points.get(connection_id) def set_congestion_point(self, connection_id: str, congestion_point_id: str): - self._congestion_points[connection_id] = congestion_point_id def get_congestion_points(self) -> List[str]: @@ -82,17 +82,29 @@ def get_congestion_points(self) -> List[str]: class ClusterTarget: """Class representing a target for a cluster.""" - def __init__(self, generated_at: datetime, parent_id: Any, generated_by: Any, global_target_profile: TargetProfile, congestion_point_targets: Optional[Dict[str, JouleRangeProfile]] = None) -> None: + def __init__( + self, + generated_at: datetime, + parent_id: Any, + generated_by: Any, + global_target_profile: TargetProfile, + congestion_point_targets: Optional[Dict[str, JouleRangeProfile]] = None, + ) -> None: self._generated_at = generated_at self._parent_id = parent_id self._generated_by = generated_by self._global_target_profile = global_target_profile self._congestion_point_targets = congestion_point_targets if congestion_point_targets is not None: - for congestion_point_id, congestion_point_target in congestion_point_targets.items(): + for ( + congestion_point_id, + congestion_point_target, + ) in congestion_point_targets.items(): if not congestion_point_target.is_compatible(global_target_profile): - raise ValueError(f"Congestion point target {congestion_point_id} is not compatible with the global target profile") - + raise ValueError( + f"Congestion point target {congestion_point_id} is not compatible with the global target profile" + ) + def get_global_target_profile(self) -> Any: return self._global_target_profile @@ -110,11 +122,18 @@ def get_congestion_point_targets(self) -> Dict[str, JouleRangeProfile]: if self._congestion_point_targets is None: return {} return self._congestion_point_targets - - def set_congestion_point_target(self, congestion_point_id: str, congestion_point_target: JouleRangeProfile): + + def set_congestion_point_target( + self, + congestion_point_id: str, + congestion_point_target: JouleRangeProfile, + elements: Optional[List[Any]] = None, + ): if self._congestion_point_targets is None: self._congestion_point_targets = {} self._congestion_point_targets[congestion_point_id] = congestion_point_target + if elements is not None: + self._congestion_point_targets[congestion_point_id].elements = elements class DevicePlan: @@ -272,7 +291,9 @@ def create_controller_tree( if congestion_point == self.DEFAULT_CONGESTION_POINT: # This is a dummy congestion point. We will give it an empty profile. congestion_point_target = JouleRangeProfile( - target.get_global_target_profile().get_profile_metadata() + target.get_global_target_profile().get_profile_metadata(),elements=congestion_point_target.get_elements(), + min_value=min(congestion_point_target.get_elements()), + max_value=max(congestion_point_target.get_elements()), ) cpc = CongestionPointPlanner(congestion_point, congestion_point_target) @@ -328,14 +349,18 @@ def plan( logger.warning( f"CongestionPoint without target! CongestionPoint: {cp}. Generating empty target." ) - target.set_congestion_point_target_global_target(cp, JouleRangeProfile( - target.get_global_target_profile().get_profile_metadata() - )) + target.set_congestion_point_target( + congestion_point_id=cp, + congestion_point_target=JouleRangeProfile( + profile_start=target.get_global_target_profile().get_profile_metadata(), + ), + elements=target.get_global_target_profile().get_elements(), + ) # Create a tree of controllers and run the planning algorithm root_controller = self.create_controller_tree(state, target, plan_due_by_date) - try: + try: root_controller.plan( plan_due_by_date, optimize_for_target, diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py index 2d7fb30..df7a35b 100644 --- a/flexmeasures_s2/profile_steering/root_planner.py +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -5,6 +5,7 @@ from flexmeasures_s2.profile_steering.common.proposal import Proposal from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile + class RootPlanner: MAX_ITERATIONS = 1000 @@ -124,15 +125,13 @@ def plan( best_proposal.get_origin().accept_proposal(best_proposal) i += 1 print( - f"Root controller: selected best controller '{best_proposal.get_origin().get_device_name()}' with global energy impr {best_proposal.get_global_improvement_value()}, cost impr {best_proposal.get_cost_improvement_value()}, congestion impr {best_proposal.get_congestion_improvement_value()}, iteration {i}." + f"Root controller: selected best controller '{best_proposal.get_origin().get_device_name()}' with global energy impr {best_proposal.get_global_improvement_value()}, congestion impr {best_proposal.get_congestion_improvement_value()}, iteration {i}." ) # Check stopping criteria: if improvement values are below thresholds or max iterations reached. if ( best_proposal.get_global_improvement_value() <= self.energy_iteration_criterion - and best_proposal.get_cost_improvement_value() - <= self.cost_iteration_criterion ) or i >= self.MAX_ITERATIONS: break diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 07972bd..c7fc67f 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -1,3 +1,4 @@ +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile import pytest from datetime import datetime, timedelta, timezone import uuid @@ -8,7 +9,8 @@ from s2python.frbc.frbc_fill_level_target_profile_element import ( FRBCFillLevelTargetProfileElement, ) -from s2python.frbc.frbc_leakage_behaviour_element import FRBCLeakageBehaviourElement +from s2python.frbc.frbc_leakage_behaviour_element import \ + FRBCLeakageBehaviourElement from s2python.frbc.frbc_operation_mode import FRBCOperationMode from s2python.frbc.frbc_usage_forecast_element import FRBCUsageForecastElement from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( @@ -17,13 +19,15 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( S2FrbcDeviceState, ) -from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.common.profile_metadata import \ + ProfileMetadata from s2python.frbc import FRBCSystemDescription from s2python.frbc import FRBCUsageForecast from s2python.frbc import FRBCFillLevelTargetProfile from s2python.frbc import FRBCLeakageBehaviour from s2python.frbc import FRBCOperationModeElement -from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, FRBCStorageDescription +from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, \ + FRBCStorageDescription from s2python.common import PowerRange, Duration from s2python.common import NumberRange from s2python.common import CommodityQuantity @@ -31,8 +35,12 @@ from s2python.common import Timer from s2python.common import PowerValue from s2python.common import Commodity -from flexmeasures_s2.profile_steering.tests.joule_profile_example import get_JouleProfileTarget -from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import DevicePlanner +from flexmeasures_s2.profile_steering.tests.joule_profile_example import ( + get_JouleProfileTarget, +) +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.planning_service_impl import ( PlanningServiceImpl, @@ -45,32 +53,30 @@ # make a list of tuples with the ids and the names ids = [] - import matplotlib.pyplot as plt def create_ev_device_state( - device_id: str, - omloop_starts_at: datetime, - cet: timezone, - charge_power_soc_percentage_per_second_night: float, - charging_power_kw_night: float, - charge_power_soc_percentage_per_second_day: float, - charging_power_kw_day: float, - soc_percentage_before_charging1: float, - final_fill_level_target1: float, - recharge_duration1: timedelta, - start_of_recharge1: datetime, - drive_duration1: timedelta, - start_of_drive1: datetime, - drive_consume_soc_per_second1: float, - soc_percentage_before_driving1: float, - soc_percentage_before_charging2: float, - final_fill_level_target2: float, - recharge_duration2: timedelta, - start_of_recharge2: datetime, + device_id: str, + omloop_starts_at: datetime, + cet: timezone, + charge_power_soc_percentage_per_second_night: float, + charging_power_kw_night: float, + charge_power_soc_percentage_per_second_day: float, + charging_power_kw_day: float, + soc_percentage_before_charging1: float, + final_fill_level_target1: float, + recharge_duration1: timedelta, + start_of_recharge1: datetime, + drive_duration1: timedelta, + start_of_drive1: datetime, + drive_consume_soc_per_second1: float, + soc_percentage_before_driving1: float, + soc_percentage_before_charging2: float, + final_fill_level_target2: float, + recharge_duration2: timedelta, + start_of_recharge2: datetime, ) -> S2FrbcDeviceState: - # Create system description recharge_system_description1, charge_actuator_status1, storage_status1 = ( create_recharge_system_description( @@ -151,7 +157,8 @@ def create_ev_device_state( recharge_fill_level_target1, recharge_fill_level_target2, ], - computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, 20), + computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, + 20), actuator_statuses=[ off_actuator_status1, charge_actuator_status1, @@ -161,6 +168,7 @@ def create_ev_device_state( ) return device_state + # # def test_connexxion_ev_bus_baseline_byd_225(): # # Arrange @@ -253,12 +261,13 @@ def create_ev_device_state( # assert planning.elements == get_JouleProfileTarget() # + @staticmethod def create_recharge_system_description( - start_of_recharge, - charge_power_soc_percentage_per_second, - charging_power_kw, - soc_percentage_before_charging, + start_of_recharge, + charge_power_soc_percentage_per_second, + charging_power_kw, + soc_percentage_before_charging, ) -> FRBCSystemDescription: global charge_actuator_id, id_on_operation_mode, id_off_operation_mode, id_on_to_off_timer, id_off_to_on_timer # Create and return a mock system description for recharging @@ -323,9 +332,11 @@ def create_recharge_system_description( duration=Duration(30), ) transition_id_from_on_to_off = str(uuid.uuid4()) - logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") + logging.debug( + f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") ids.append( - (transition_id_from_on_to_off, "transition_from_charge_on_to_charge_off") + ( + transition_id_from_on_to_off, "transition_from_charge_on_to_charge_off") ) transition_from_on_to_off = Transition( id=transition_id_from_on_to_off, @@ -337,9 +348,11 @@ def create_recharge_system_description( abnormal_condition_only=False, ) transition_id_from_off_to_on = str(uuid.uuid4()) - logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") + logging.debug( + f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") ids.append( - (transition_id_from_off_to_on, "transition_from_charge_off_to_charge_on") + ( + transition_id_from_off_to_on, "transition_from_charge_off_to_charge_on") ) transition_from_off_to_on = Transition( id=transition_id_from_off_to_on, @@ -372,7 +385,8 @@ def create_recharge_system_description( logging.debug(f"storage_status_id: {storage_status_id}") ids.append((storage_status_id, "storage_status")) storage_status = FRBCStorageStatus( - message_id=storage_status_id, present_fill_level=soc_percentage_before_charging + message_id=storage_status_id, + present_fill_level=soc_percentage_before_charging ) frbc_storage_description = FRBCStorageDescription( @@ -404,7 +418,8 @@ def create_recharge_leakage_behaviour(start_of_recharge): valid_from=start_of_recharge, elements=[ FRBCLeakageBehaviourElement( - fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_level_range=NumberRange(start_of_range=0, + end_of_range=100), leakage_rate=0, ) ], @@ -426,10 +441,10 @@ def create_recharge_usage_forecast(start_of_recharge, recharge_duration): @staticmethod def create_recharge_fill_level_target_profile( - start_of_recharge, - recharge_duration, - final_fill_level_target, - soc_percentage_before_charging, + start_of_recharge, + recharge_duration, + final_fill_level_target, + soc_percentage_before_charging, ): during_charge = FRBCFillLevelTargetProfileElement( duration=max(recharge_duration.total_seconds() - 10, 0), @@ -454,7 +469,8 @@ def create_recharge_fill_level_target_profile( @staticmethod -def create_driving_system_description(start_of_drive, soc_percentage_before_driving): +def create_driving_system_description(start_of_drive, + soc_percentage_before_driving): global off_actuator_id, id_off_operation_mode off_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), @@ -494,7 +510,8 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv supported_commodities=[Commodity.ELECTRICITY], ) storage_status = FRBCStorageStatus( - message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_driving + message_id=str(uuid.uuid4()), + present_fill_level=soc_percentage_before_driving ) storage_description = FRBCStorageDescription( diagnostic_label="battery", @@ -518,14 +535,15 @@ def create_driving_system_description(start_of_drive, soc_percentage_before_driv @staticmethod def create_driving_usage_forecast( - start_of_driving, next_drive_duration, soc_usage_per_second + start_of_driving, next_drive_duration, soc_usage_per_second ): no_usage = FRBCUsageForecastElement( duration=int(next_drive_duration.total_seconds()), usage_rate_expected=(-1 * soc_usage_per_second), ) return FRBCUsageForecast( - message_id=str(uuid.uuid4()), start_time=start_of_driving, elements=[no_usage] + message_id=str(uuid.uuid4()), start_time=start_of_driving, + elements=[no_usage] ) @@ -535,31 +553,31 @@ def test_planning_service_impl_with_ev_device(): device_id = "ev-test-01" omloop_starts_at = datetime.fromtimestamp(3600) cet = timezone(timedelta(hours=1)) - + # Device charging parameters charge_power_soc_percentage_per_second_night = 0.0054012349 charging_power_kw_night = 28 charge_power_soc_percentage_per_second_day = 0.01099537114 charging_power_kw_day = 57 - + # First recharge period start_of_recharge1 = omloop_starts_at.astimezone(cet) recharge_duration1 = timedelta(hours=7, minutes=13) soc_percentage_before_charging1 = 0 final_fill_level_target1 = 100 - + # Driving period start_of_drive1 = start_of_recharge1 + recharge_duration1 drive_duration1 = timedelta(hours=4, minutes=36) drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 soc_percentage_before_driving1 = 100 - + # Second recharge period start_of_recharge2 = start_of_drive1 + drive_duration1 recharge_duration2 = timedelta(seconds=5360) soc_percentage_before_charging2 = 37.7463951 final_fill_level_target2 = 94.4825134 - + # Create the device state device_state = create_ev_device_state( device_id, @@ -582,7 +600,7 @@ def test_planning_service_impl_with_ev_device(): recharge_duration2, start_of_recharge2, ) - + # Create profile metadata epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) target_metadata = ProfileMetadata( @@ -590,14 +608,14 @@ def test_planning_service_impl_with_ev_device(): timestep_duration=timedelta(seconds=300), nr_of_timesteps=288, ) - + target_profile_elements = get_JouleProfileTarget() # Create a target profile - global_target_profile = JouleProfile( + global_target_profile = TargetProfile( profile_start=target_metadata.get_profile_start(), timestep_duration=target_metadata.get_timestep_duration(), - elements=get_JouleProfileTarget(), + elements=target_profile_elements, ) - + # Create planning service config config = PlanningServiceConfig( energy_improvement_criterion=0.01, @@ -605,21 +623,23 @@ def test_planning_service_impl_with_ev_device(): congestion_retry_iterations=5, multithreaded=False, ) - + # Create planning service implementation service = PlanningServiceImpl(config) - + # Create cluster state with device cluster_state = ClusterState() cluster_state.get_device_states()[device_id] = device_state cluster_state.set_congestion_point(device_state.get_connection_id(), "") - + # Create cluster target - cluster_target = ClusterTarget(datetime.now(), None, None, global_target_profile) - + cluster_target = ClusterTarget(datetime.now(), None, None, + global_target_profile=global_target_profile) + # Set due by date for planning - plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - + plan_due_by_date = target_metadata.get_profile_start() + timedelta( + seconds=10) + # Act - Generate a plan start_time = time.time() cluster_plan = service.plan( @@ -633,33 +653,35 @@ def test_planning_service_impl_with_ev_device(): ) end_time = time.time() execution_time = end_time - start_time - + # Log information print(f"Plan generated in {execution_time:.2f} seconds") - + # Assert assert cluster_plan is not None - + print("Got cluster plan") # Get the plan for our device device_plans = cluster_plan.get_plan_data().get_device_plans() - device_plan = next((p for p in device_plans if p.get_device_id() == device_id), None) - + device_plan = next( + (p for p in device_plans if p.get_device_id() == device_id), None + ) + # Assert that we got a plan for our device assert device_plan is not None - + print("Got device plan") # Print and verify the energy profile energy_profile = device_plan.get_profile() print(f"Energy profile has {len(energy_profile.elements)} elements") - + # Print the first few elements to verify the plan print("First 10 energy profile elements:") for i in range(min(10, len(energy_profile.elements))): print(f" Timestep {i}: {energy_profile.elements[i]} joules") - + # Basic assertion - the energy profile should have the expected number of elements assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() - - # You could add more specific assertions based on expected behavior + + # Main function if __name__ == "__main__": From d335f6aa14b218dcfea6eed77881b7ea6c30b342 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Fri, 14 Mar 2025 14:54:00 +0100 Subject: [PATCH 24/33] Planning service provides initial plan Signed-off-by: Vlad Iftime --- flexmeasures_s2/profile_steering/tests/test_frbc_device.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index c7fc67f..1ea4a2c 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -550,7 +550,7 @@ def create_driving_usage_forecast( def test_planning_service_impl_with_ev_device(): """Test the PlanningServiceImpl with an EV device.""" # Arrange - device_id = "ev-test-01" + device_id = "bat1" omloop_starts_at = datetime.fromtimestamp(3600) cet = timezone(timedelta(hours=1)) @@ -670,7 +670,7 @@ def test_planning_service_impl_with_ev_device(): assert device_plan is not None print("Got device plan") # Print and verify the energy profile - energy_profile = device_plan.get_profile() + energy_profile = device_plan.get_energy_profile() print(f"Energy profile has {len(energy_profile.elements)} elements") # Print the first few elements to verify the plan @@ -681,7 +681,7 @@ def test_planning_service_impl_with_ev_device(): # Basic assertion - the energy profile should have the expected number of elements assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() - + # Main function if __name__ == "__main__": From 047e796af27205341a0c3f91c24be39f1c4151cb Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 19 Mar 2025 09:34:32 +0100 Subject: [PATCH 25/33] Added cluster plan and global target Signed-off-by: Vlad Iftime --- .../common/joule_range_profile.py | 10 +- .../profile_steering/common/target_profile.py | 5 + .../congestion_point_planner.py | 4 +- .../profile_steering/planning_service_impl.py | 162 ++--------------- .../tests/joule_profile_example.py | 118 ++++++------ .../tests/test_frbc_device.py | 170 ++++++++++++------ 6 files changed, 196 insertions(+), 273 deletions(-) diff --git a/flexmeasures_s2/profile_steering/common/joule_range_profile.py b/flexmeasures_s2/profile_steering/common/joule_range_profile.py index b8c5b16..35bdddd 100644 --- a/flexmeasures_s2/profile_steering/common/joule_range_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_range_profile.py @@ -63,10 +63,12 @@ def __init__( metadata = profile_start if nr_of_timesteps is None: nr_of_timesteps = metadata.get_nr_of_timesteps() - elements = self._create_element_array( - nr_of_timesteps, min_value, max_value - ) - + if min_value is None: + min_value = 0 + if max_value is None: + max_value = 8400000 + elements = self._create_element_array(nr_of_timesteps, min_value, max_value) + else: if elements is not None: metadata = ProfileMetadata( diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py index 026f227..9d9d6ac 100644 --- a/flexmeasures_s2/profile_steering/common/target_profile.py +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -31,6 +31,11 @@ def __init__( ): metadata = ProfileMetadata(profile_start, timestep_duration, len(elements)) super().__init__(metadata, elements) + # if elements is a list of ints, convert it to a list of JouleElement + if isinstance(elements, list) and all(isinstance(e, int) for e in elements): + self.elements = [TargetProfile.JouleElement(e) for e in elements] + else: + self.elements = elements def validate( self, diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index f88ed84..bb5a3d9 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -19,6 +19,7 @@ def __init__(self, congestion_point_id: str, congestion_target: JouleRangeProfil congestion_point_id: Unique identifier for this congestion point congestion_target: Target profile with range constraints for this congestion point """ + self.MAX_ITERATIONS = 1000 self.congestion_point_id = congestion_point_id self.congestion_target = congestion_target self.profile_metadata = congestion_target.get_profile_metadata() @@ -41,6 +42,7 @@ def add_device(self, device): """Add a device controller to this congestion point.""" self.devices.append(device) + @staticmethod def is_storage_available(self) -> bool: """Check if storage is available at this congestion point.""" # For now, always assume storage is available @@ -96,7 +98,7 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: plan_due_by_date, ) print( - f"congestion impr for '{device.get_device_id()}': {proposal.get_congestion_improvement_value()}" + f"congestion point improvement for '{device.get_device_id()}': {proposal.get_congestion_improvement_value()}" ) if ( best_proposal is None diff --git a/flexmeasures_s2/profile_steering/planning_service_impl.py b/flexmeasures_s2/profile_steering/planning_service_impl.py index 9623fa8..2ce9560 100644 --- a/flexmeasures_s2/profile_steering/planning_service_impl.py +++ b/flexmeasures_s2/profile_steering/planning_service_impl.py @@ -14,6 +14,16 @@ from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +# Import from common data structures to avoid circular imports +from flexmeasures_s2.profile_steering.common_data_structures import ( + ClusterState, + DevicePlan, +) + +# Import cluster related classes +from flexmeasures_s2.profile_steering.cluster_plan import ClusterPlan, ClusterPlanData +from flexmeasures_s2.profile_steering.cluster_target import ClusterTarget + # Device planner imports from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( S2FrbcDevicePlanner, @@ -22,9 +32,6 @@ S2FrbcDeviceState, ) -# Import other device planners as needed -# Import statements for other device planners would go here - # Logger setup import logging @@ -59,149 +66,6 @@ def multithreaded(self) -> bool: return self._multithreaded -class ClusterState: - """Class representing the state of a cluster of devices.""" - - def __init__(self, device_states: Dict[str, Any] = None): - self._device_states = device_states or {} - self._congestion_points = {} # Map from connection ID to congestion point ID - - def get_device_states(self) -> Dict[str, Any]: - return self._device_states - - def get_congestion_point(self, connection_id: str) -> Optional[str]: - return self._congestion_points.get(connection_id) - - def set_congestion_point(self, connection_id: str, congestion_point_id: str): - self._congestion_points[connection_id] = congestion_point_id - - def get_congestion_points(self) -> List[str]: - return list(set(self._congestion_points.values())) - - -class ClusterTarget: - """Class representing a target for a cluster.""" - - def __init__( - self, - generated_at: datetime, - parent_id: Any, - generated_by: Any, - global_target_profile: TargetProfile, - congestion_point_targets: Optional[Dict[str, JouleRangeProfile]] = None, - ) -> None: - self._generated_at = generated_at - self._parent_id = parent_id - self._generated_by = generated_by - self._global_target_profile = global_target_profile - self._congestion_point_targets = congestion_point_targets - if congestion_point_targets is not None: - for ( - congestion_point_id, - congestion_point_target, - ) in congestion_point_targets.items(): - if not congestion_point_target.is_compatible(global_target_profile): - raise ValueError( - f"Congestion point target {congestion_point_id} is not compatible with the global target profile" - ) - - def get_global_target_profile(self) -> Any: - return self._global_target_profile - - def get_profile_metadata(self) -> Any: - return self._global_target_profile.get_profile_metadata() - - def get_congestion_point_target( - self, congestion_point_id: str - ) -> Optional[JouleRangeProfile]: - if self._congestion_point_targets is None: - return None - return self._congestion_point_targets.get(congestion_point_id) - - def get_congestion_point_targets(self) -> Dict[str, JouleRangeProfile]: - if self._congestion_point_targets is None: - return {} - return self._congestion_point_targets - - def set_congestion_point_target( - self, - congestion_point_id: str, - congestion_point_target: JouleRangeProfile, - elements: Optional[List[Any]] = None, - ): - if self._congestion_point_targets is None: - self._congestion_point_targets = {} - self._congestion_point_targets[congestion_point_id] = congestion_point_target - if elements is not None: - self._congestion_point_targets[congestion_point_id].elements = elements - - -class DevicePlan: - """Class representing a plan for a device.""" - - def __init__(self, device_id: str, profile: JouleProfile): - self._device_id = device_id - self._profile = profile - - def get_device_id(self) -> str: - return self._device_id - - def get_profile(self) -> JouleProfile: - return self._profile - - -class ClusterPlanData: - """Class representing planning data for a cluster.""" - - def __init__(self, device_plans: List[DevicePlan], profile_metadata: Any): - self._device_plans = device_plans - self._profile_metadata = profile_metadata - - def get_device_plans(self) -> List[DevicePlan]: - return self._device_plans - - def get_profile_metadata(self) -> Any: - return self._profile_metadata - - -class ClusterPlan: - """Class representing a plan for a cluster.""" - - def __init__( - self, - state: ClusterState, - target: ClusterTarget, - plan_data: ClusterPlanData, - reason: str, - plan_due_by_date: datetime, - parent_plan: Optional["ClusterPlan"] = None, - ): - self._state = state - self._target = target - self._plan_data = plan_data - self._reason = reason - self._plan_due_by_date = plan_due_by_date - self._parent_plan = parent_plan - - def get_state(self) -> ClusterState: - return self._state - - def get_target(self) -> ClusterTarget: - return self._target - - def get_plan_data(self) -> ClusterPlanData: - return self._plan_data - - def get_reason(self) -> str: - return self._reason - - def get_plan_due_by_date(self) -> datetime: - return self._plan_due_by_date - - def get_parent_plan(self) -> Optional["ClusterPlan"]: - return self._parent_plan - - class PlanningService: """Interface for planning services.""" @@ -291,9 +155,8 @@ def create_controller_tree( if congestion_point == self.DEFAULT_CONGESTION_POINT: # This is a dummy congestion point. We will give it an empty profile. congestion_point_target = JouleRangeProfile( - target.get_global_target_profile().get_profile_metadata(),elements=congestion_point_target.get_elements(), - min_value=min(congestion_point_target.get_elements()), - max_value=max(congestion_point_target.get_elements()), + target.get_global_target_profile().get_profile_metadata(), + elements=congestion_point_target.get_elements(), ) cpc = CongestionPointPlanner(congestion_point, congestion_point_target) @@ -354,7 +217,6 @@ def plan( congestion_point_target=JouleRangeProfile( profile_start=target.get_global_target_profile().get_profile_metadata(), ), - elements=target.get_global_target_profile().get_elements(), ) # Create a tree of controllers and run the planning algorithm diff --git a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py index 2080332..90046aa 100644 --- a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py +++ b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py @@ -2,44 +2,44 @@ JouleProfileTarget: List = [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, 8400000, 8400000, 8400000, @@ -156,27 +156,27 @@ 0, 0, 0, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 17100000, - 0, - 0, - 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, 0, 0, 0, diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 1ea4a2c..dd1ac79 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -9,8 +9,7 @@ from s2python.frbc.frbc_fill_level_target_profile_element import ( FRBCFillLevelTargetProfileElement, ) -from s2python.frbc.frbc_leakage_behaviour_element import \ - FRBCLeakageBehaviourElement +from s2python.frbc.frbc_leakage_behaviour_element import FRBCLeakageBehaviourElement from s2python.frbc.frbc_operation_mode import FRBCOperationMode from s2python.frbc.frbc_usage_forecast_element import FRBCUsageForecastElement from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( @@ -19,15 +18,13 @@ from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( S2FrbcDeviceState, ) -from flexmeasures_s2.profile_steering.common.profile_metadata import \ - ProfileMetadata +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata from s2python.frbc import FRBCSystemDescription from s2python.frbc import FRBCUsageForecast from s2python.frbc import FRBCFillLevelTargetProfile from s2python.frbc import FRBCLeakageBehaviour from s2python.frbc import FRBCOperationModeElement -from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, \ - FRBCStorageDescription +from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, FRBCStorageDescription from s2python.common import PowerRange, Duration from s2python.common import NumberRange from s2python.common import CommodityQuantity @@ -48,6 +45,9 @@ ClusterState, ClusterTarget, ) +import matplotlib.pyplot as plt +import matplotlib.dates as mdates +import matplotlib.patches as mpatches # Global variables to store IDs for debugging # make a list of tuples with the ids and the names @@ -57,25 +57,25 @@ def create_ev_device_state( - device_id: str, - omloop_starts_at: datetime, - cet: timezone, - charge_power_soc_percentage_per_second_night: float, - charging_power_kw_night: float, - charge_power_soc_percentage_per_second_day: float, - charging_power_kw_day: float, - soc_percentage_before_charging1: float, - final_fill_level_target1: float, - recharge_duration1: timedelta, - start_of_recharge1: datetime, - drive_duration1: timedelta, - start_of_drive1: datetime, - drive_consume_soc_per_second1: float, - soc_percentage_before_driving1: float, - soc_percentage_before_charging2: float, - final_fill_level_target2: float, - recharge_duration2: timedelta, - start_of_recharge2: datetime, + device_id: str, + omloop_starts_at: datetime, + cet: timezone, + charge_power_soc_percentage_per_second_night: float, + charging_power_kw_night: float, + charge_power_soc_percentage_per_second_day: float, + charging_power_kw_day: float, + soc_percentage_before_charging1: float, + final_fill_level_target1: float, + recharge_duration1: timedelta, + start_of_recharge1: datetime, + drive_duration1: timedelta, + start_of_drive1: datetime, + drive_consume_soc_per_second1: float, + soc_percentage_before_driving1: float, + soc_percentage_before_charging2: float, + final_fill_level_target2: float, + recharge_duration2: timedelta, + start_of_recharge2: datetime, ) -> S2FrbcDeviceState: # Create system description recharge_system_description1, charge_actuator_status1, storage_status1 = ( @@ -157,8 +157,7 @@ def create_ev_device_state( recharge_fill_level_target1, recharge_fill_level_target2, ], - computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, - 20), + computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, 20), actuator_statuses=[ off_actuator_status1, charge_actuator_status1, @@ -264,10 +263,10 @@ def create_ev_device_state( @staticmethod def create_recharge_system_description( - start_of_recharge, - charge_power_soc_percentage_per_second, - charging_power_kw, - soc_percentage_before_charging, + start_of_recharge, + charge_power_soc_percentage_per_second, + charging_power_kw, + soc_percentage_before_charging, ) -> FRBCSystemDescription: global charge_actuator_id, id_on_operation_mode, id_off_operation_mode, id_on_to_off_timer, id_off_to_on_timer # Create and return a mock system description for recharging @@ -332,11 +331,9 @@ def create_recharge_system_description( duration=Duration(30), ) transition_id_from_on_to_off = str(uuid.uuid4()) - logging.debug( - f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") + logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") ids.append( - ( - transition_id_from_on_to_off, "transition_from_charge_on_to_charge_off") + (transition_id_from_on_to_off, "transition_from_charge_on_to_charge_off") ) transition_from_on_to_off = Transition( id=transition_id_from_on_to_off, @@ -348,11 +345,9 @@ def create_recharge_system_description( abnormal_condition_only=False, ) transition_id_from_off_to_on = str(uuid.uuid4()) - logging.debug( - f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") + logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") ids.append( - ( - transition_id_from_off_to_on, "transition_from_charge_off_to_charge_on") + (transition_id_from_off_to_on, "transition_from_charge_off_to_charge_on") ) transition_from_off_to_on = Transition( id=transition_id_from_off_to_on, @@ -385,8 +380,7 @@ def create_recharge_system_description( logging.debug(f"storage_status_id: {storage_status_id}") ids.append((storage_status_id, "storage_status")) storage_status = FRBCStorageStatus( - message_id=storage_status_id, - present_fill_level=soc_percentage_before_charging + message_id=storage_status_id, present_fill_level=soc_percentage_before_charging ) frbc_storage_description = FRBCStorageDescription( @@ -418,8 +412,7 @@ def create_recharge_leakage_behaviour(start_of_recharge): valid_from=start_of_recharge, elements=[ FRBCLeakageBehaviourElement( - fill_level_range=NumberRange(start_of_range=0, - end_of_range=100), + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), leakage_rate=0, ) ], @@ -441,10 +434,10 @@ def create_recharge_usage_forecast(start_of_recharge, recharge_duration): @staticmethod def create_recharge_fill_level_target_profile( - start_of_recharge, - recharge_duration, - final_fill_level_target, - soc_percentage_before_charging, + start_of_recharge, + recharge_duration, + final_fill_level_target, + soc_percentage_before_charging, ): during_charge = FRBCFillLevelTargetProfileElement( duration=max(recharge_duration.total_seconds() - 10, 0), @@ -469,8 +462,7 @@ def create_recharge_fill_level_target_profile( @staticmethod -def create_driving_system_description(start_of_drive, - soc_percentage_before_driving): +def create_driving_system_description(start_of_drive, soc_percentage_before_driving): global off_actuator_id, id_off_operation_mode off_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), @@ -510,8 +502,7 @@ def create_driving_system_description(start_of_drive, supported_commodities=[Commodity.ELECTRICITY], ) storage_status = FRBCStorageStatus( - message_id=str(uuid.uuid4()), - present_fill_level=soc_percentage_before_driving + message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_driving ) storage_description = FRBCStorageDescription( diagnostic_label="battery", @@ -535,18 +526,73 @@ def create_driving_system_description(start_of_drive, @staticmethod def create_driving_usage_forecast( - start_of_driving, next_drive_duration, soc_usage_per_second + start_of_driving, next_drive_duration, soc_usage_per_second ): no_usage = FRBCUsageForecastElement( duration=int(next_drive_duration.total_seconds()), usage_rate_expected=(-1 * soc_usage_per_second), ) return FRBCUsageForecast( - message_id=str(uuid.uuid4()), start_time=start_of_driving, - elements=[no_usage] + message_id=str(uuid.uuid4()), start_time=start_of_driving, elements=[no_usage] ) +def plot_planning_results( + timestep_duration, + nr_of_timesteps, + predicted_energy_elements, + target_energy_elements, +): + """ + Plots the energy, fill level, actuator usage, and operation mode ID lists using matplotlib. + + :param timestep_duration: Duration of each timestep. + :param nr_of_timesteps: Number of timesteps. + :param predicted_energy_elements: List of predicted energy values. + :param target_energy_elements: List of target energy values. + """ + # Create a figure with a single subplot + fig, ax = plt.subplots(1, 1, figsize=(12, 8)) + + # Generate timestep_start_times + timestep_start_times = [ + datetime(1970, 1, 1, tzinfo=timezone.utc) + + timedelta(seconds=i * timestep_duration.total_seconds()) + for i in range(nr_of_timesteps) + ] + + # Plot both lines on the same subplot + ax.plot( + timestep_start_times, + predicted_energy_elements, + label="Predicted Energy", + color="green", + ) + ax.plot( + timestep_start_times, + target_energy_elements, + label="Target Energy", + color="red", + linestyle="dotted", + linewidth=2, + ) + + # Set labels and grid + ax.set_ylabel("Energy (Joules)") + ax.set_title("Predicted vs Target Energy") + ax.legend(loc="best") + ax.grid(True) + + # Format the x-axis to show time and set ticks every 30 minutes + ax.xaxis.set_major_locator(mdates.MinuteLocator(interval=30)) + ax.xaxis.set_major_formatter(mdates.DateFormatter("%H:%M:%S")) + fig.autofmt_xdate() + + # Adjust layout + plt.tight_layout() + plt.show() + + def test_planning_service_impl_with_ev_device(): """Test the PlanningServiceImpl with an EV device.""" # Arrange @@ -633,12 +679,12 @@ def test_planning_service_impl_with_ev_device(): cluster_state.set_congestion_point(device_state.get_connection_id(), "") # Create cluster target - cluster_target = ClusterTarget(datetime.now(), None, None, - global_target_profile=global_target_profile) + cluster_target = ClusterTarget( + datetime.now(), None, None, global_target_profile=global_target_profile + ) # Set due by date for planning - plan_due_by_date = target_metadata.get_profile_start() + timedelta( - seconds=10) + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) # Act - Generate a plan start_time = time.time() @@ -681,7 +727,13 @@ def test_planning_service_impl_with_ev_device(): # Basic assertion - the energy profile should have the expected number of elements assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() - + plot_planning_results( + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288, + predicted_energy_elements=energy_profile.get_elements(), + target_energy_elements=target_profile_elements, + ) + # Main function if __name__ == "__main__": From db6728a8a1ac832b004d6439ea2747700e22fa35 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 2 Apr 2025 17:43:21 +0200 Subject: [PATCH 26/33] Root and cluster point produce a improved plan close to the target. Signed-off-by: Vlad Iftime --- .../profile_steering/cluster_plan.py | 685 ++++++++++++++++++ .../profile_steering/cluster_target.py | 226 ++++++ .../common/abstract_profile.py | 4 + .../profile_steering/common/joule_profile.py | 23 +- .../common/joule_range_profile.py | 8 +- .../profile_steering/common/proposal.py | 15 +- .../profile_steering/common/target_profile.py | 11 + .../common_data_structures.py | 48 ++ .../congestion_point_planner.py | 16 +- .../frbc/s2_frbc_device_state_wrapper.py | 6 +- .../profile_steering/root_planner.py | 1 + .../tests/joule_profile_example.py | 580 ++++++++------- .../tests/test_frbc_device.py | 188 +++-- 13 files changed, 1400 insertions(+), 411 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/cluster_plan.py create mode 100644 flexmeasures_s2/profile_steering/cluster_target.py create mode 100644 flexmeasures_s2/profile_steering/common_data_structures.py diff --git a/flexmeasures_s2/profile_steering/cluster_plan.py b/flexmeasures_s2/profile_steering/cluster_plan.py new file mode 100644 index 0000000..3bbc759 --- /dev/null +++ b/flexmeasures_s2/profile_steering/cluster_plan.py @@ -0,0 +1,685 @@ +from datetime import datetime +from typing import List, Dict, Any, Optional +import uuid + +# Common data types +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.joule_range_profile import JouleRangeProfile + +# Import from common data structures to avoid circular imports +from flexmeasures_s2.profile_steering.common_data_structures import ( + ClusterState, + DevicePlan, +) + +# Import cluster target +from flexmeasures_s2.profile_steering.cluster_target import ClusterTarget + + +class ClusterPlanData: + """Class representing planning data for a cluster.""" + + class CpData: + """Class representing data for a congestion point.""" + + def __init__( + self, + cp_id: str, + cp_plan: List[float], + der_plans: Dict[str, List[float]], + cp_consumption: List[float], + cp_production: List[float], + cp_consumption_max: float, + cp_production_max: float, + ): + self._cp_id = cp_id + self._cp_plan = cp_plan + self._der_plans = der_plans + self._cp_consumption = cp_consumption + self._cp_production = cp_production + self._cp_consumption_max = cp_consumption_max + self._cp_production_max = cp_production_max + + def get_cp_id(self) -> str: + return self._cp_id + + def get_cp_plan(self) -> List[float]: + return self._cp_plan + + def get_der_plans(self) -> Dict[str, List[float]]: + return self._der_plans + + def get_cp_consumption(self) -> List[float]: + return self._cp_consumption + + def get_cp_production(self) -> List[float]: + return self._cp_production + + def get_cp_consumption_max(self) -> float: + return self._cp_consumption_max + + def get_cp_production_max(self) -> float: + return self._cp_production_max + + def add_der_plan( + self, der_name: str, value: JouleProfile + ) -> "ClusterPlanData.CpData": + """Add a device energy resource plan to this congestion point. + + Args: + der_name: The name of the device energy resource + value: The profile of the device energy resource + + Returns: + A new CpData instance with the added device energy resource plan + """ + der_plan = to_float_array(value) + new_cp_plan = [0] * len(self._cp_plan) + cp_consumption = [0] * len(self._cp_plan) + cp_production = [0] * len(self._cp_plan) + consumption_max = self._cp_consumption_max + production_max = self._cp_production_max + + for i in range(len(self._cp_plan)): + new_cp_plan[i] = der_plan[i] + self._cp_plan[i] + cp_consumption[i] = self._cp_consumption[i] + cp_production[i] = self._cp_production[i] + + if der_plan[i] >= 0: + cp_consumption[i] += der_plan[i] + consumption_max = max(cp_consumption[i], consumption_max) + else: + cp_production[i] += der_plan[i] + production_max = min(cp_production[i], production_max) + + new_der_plans = self._der_plans.copy() + new_der_plans[der_name] = der_plan + + return ClusterPlanData.CpData( + self._cp_id, + new_cp_plan, + new_der_plans, + cp_consumption, + cp_production, + consumption_max, + production_max, + ) + + @classmethod + def empty(cls, cp_id: str, profile_metadata: Any) -> "ClusterPlanData.CpData": + """Create an empty CpData instance. + + Args: + cp_id: The congestion point ID + profile_metadata: Metadata about the profile + + Returns: + An empty CpData instance + """ + timesteps = profile_metadata.get_nr_of_timesteps() + return cls( + cp_id, + [0.0] * timesteps, + {}, + [0.0] * timesteps, + [0.0] * timesteps, + 0.0, + 0.0, + ) + + def __init__( + self, + device_plans: List[DevicePlan] = None, + profile_metadata: Any = None, + _id: str = None, + reason: str = None, + target: Any = None, + active_target: Any = None, + current_plan: List[float] = None, + start: int = None, + step: int = None, + global_deviation_score: float = 1.0, + constraint_violation_score: float = 1.0, + cp_datas: Dict[str, CpData] = None, + ): + self._device_plans = device_plans or [] + self._profile_metadata = profile_metadata + self._id = _id + self._reason = reason + self._target = target + self._active_target = active_target + self._current_plan = current_plan + self._start = start + self._step = step + self._global_deviation_score = global_deviation_score + self._constraint_violation_score = constraint_violation_score + self._cp_datas = cp_datas or {} + + def get_device_plans(self) -> List[DevicePlan]: + return self._device_plans + + def get_profile_metadata(self) -> Any: + return self._profile_metadata + + def get_id(self) -> str: + return self._id + + def get_reason(self) -> str: + return self._reason + + def get_target(self) -> Any: + return self._target + + def get_active_target(self) -> Any: + return self._active_target + + def get_current_plan(self) -> List[float]: + return self._current_plan + + def get_start(self) -> int: + return self._start + + def get_step(self) -> int: + return self._step + + def get_global_deviation_score(self) -> float: + return self._global_deviation_score + + def get_constraint_violation_score(self) -> float: + return self._constraint_violation_score + + def get_cp_datas(self) -> Dict[str, CpData]: + return self._cp_datas + + def is_compatible(self, other: Any) -> bool: + """Check if this cluster plan data is compatible with another profile. + + Args: + other: The other profile to check compatibility with + + Returns: + True if compatible, False otherwise + """ + if self._profile_metadata is None: + return False + + return self._profile_metadata.is_compatible(other.get_profile_metadata()) + + def subprofile(self, new_start_date: datetime) -> "ClusterPlanData": + """Create a subprofile starting at the specified date. + + Args: + new_start_date: The new start date for the profile + + Returns: + A new ClusterPlanData instance with adjusted start date + """ + # Create a copy of this instance with adjusted device plans + new_device_plans = [] + for device_plan in self._device_plans: + new_profile = device_plan.get_profile().subprofile(new_start_date) + new_device_plans.append( + DevicePlan(device_plan.get_device_id(), new_profile) + ) + + # Create new profile metadata with adjusted start date + new_profile_metadata = self._profile_metadata.subprofile(new_start_date) + + return ClusterPlanData( + device_plans=new_device_plans, + profile_metadata=new_profile_metadata, + _id=self._id, + reason=self._reason, + target=self._target, + active_target=self._active_target, + current_plan=self._current_plan, + start=int(new_start_date.timestamp() * 1000), + # Convert to milliseconds + step=self._step, + global_deviation_score=self._global_deviation_score, + constraint_violation_score=self._constraint_violation_score, + cp_datas=self._cp_datas, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlanData": + """Adjust the number of elements in the profile. + + Args: + nr_of_elements: The new number of elements + + Returns: + A new ClusterPlanData instance with adjusted number of elements + """ + # Create a copy of this instance with adjusted device plans + new_device_plans = [] + for device_plan in self._device_plans: + new_profile = device_plan.get_profile().adjust_nr_of_elements( + nr_of_elements + ) + new_device_plans.append( + DevicePlan(device_plan.get_device_id(), new_profile) + ) + + # Create new profile metadata with adjusted number of elements + new_profile_metadata = self._profile_metadata.adjust_nr_of_elements( + nr_of_elements + ) + + return ClusterPlanData( + device_plans=new_device_plans, + profile_metadata=new_profile_metadata, + _id=self._id, + reason=self._reason, + target=self._target, + active_target=self._active_target, + current_plan=( + self._current_plan[:nr_of_elements] if self._current_plan else None + ), + start=self._start, + step=self._step, + global_deviation_score=self._global_deviation_score, + constraint_violation_score=self._constraint_violation_score, + cp_datas=self._cp_datas, + ) + + @classmethod + def from_cluster_plan( + cls, + cluster_plan: "ClusterPlan", + active_target: ClusterTarget = None, + active_plan: JouleProfile = None, + ) -> "ClusterPlanData": + """Create a ClusterPlanData instance from a ClusterPlan. + + Args: + cluster_plan: The cluster plan to create the data from + active_target: The active target for the cluster + active_plan: The active plan for the cluster + + Returns: + A ClusterPlanData instance + """ + congestion_points = {} + + # Get the device plans from the cluster plan + cluster_plan_data = cluster_plan.get_plan_data() + if cluster_plan_data is None: + return None # type: ignore + + # Process each device plan + for device_plan in cluster_plan_data.get_device_plans(): + cp_id = cluster_plan.get_state().get_congestion_point( + device_plan.get_connection_id() + ) + if cp_id is None: + # The interface needs all devices to function properly. So for devices without congestion point, set a + # dummy congestion point so that those device plans go through. + cp_id = "No congestion point" + + if cp_id not in congestion_points: + congestion_points[cp_id] = ClusterPlanData.CpData.empty( + cp_id, cluster_plan.get_plan_data().get_profile_metadata() + ) + + congestion_points[cp_id] = congestion_points[cp_id].add_der_plan( + device_plan.get_device_id(), device_plan.get_profile() + ) + + # Create the current plan + if active_plan is None: + # Extract the plan from the cluster plan's JouleProfile + joule_profile = cluster_plan.get_joule_profile() + current_plan = [ + element if element is not None else 0.0 + for element in joule_profile.get_elements() + ] + else: + # Use the active plan, adjusting it to the profile metadata + profile_start = ( + cluster_plan.get_plan_data().get_profile_metadata().get_profile_start() + ) + nr_of_timesteps = ( + cluster_plan.get_plan_data() + .get_profile_metadata() + .get_nr_of_timesteps() + ) + + subprofile = active_plan.subprofile(profile_start) + adjusted_profile = subprofile.adjust_nr_of_elements(nr_of_timesteps) + current_plan = [ + element if element is not None else 0.0 + for element in adjusted_profile.get_elements() + ] + + # Get the profile metadata + profile_metadata = cluster_plan.get_plan_data().get_profile_metadata() + + # Set up the active target + actual_active_target = ( + active_target if active_target is not None else cluster_plan.get_target() + ) + + # Calculate timestamps + start_time = ( + profile_metadata.get_profile_start().timestamp() * 1000 + ) # Convert to milliseconds + timestep_duration = ( + profile_metadata.get_timestep_duration().total_seconds() * 1000 + ) # Convert to milliseconds + + # Get scores, defaulting to 1.0 if they're NaN + global_deviation_score = cluster_plan.get_global_deviation_score() + global_deviation_score = ( + 1.0 if global_deviation_score is None else global_deviation_score + ) + + constraint_violation_score = cluster_plan.get_constraint_violation_score() + constraint_violation_score = ( + 1.0 if constraint_violation_score is None else constraint_violation_score + ) + + return cls( + device_plans=cluster_plan_data.get_device_plans(), + profile_metadata=profile_metadata, + _id=str(cluster_plan.get_id()), + reason=cluster_plan.get_reason(), + target=cluster_plan.get_target(), + active_target=actual_active_target, + current_plan=current_plan, + start=int(start_time), + step=int(timestep_duration), + global_deviation_score=global_deviation_score, + constraint_violation_score=constraint_violation_score, + cp_datas=congestion_points, + ) + + +def to_float_array(profile: JouleProfile) -> List[float]: + """Convert a JouleProfile to a list of floats. + + Args: + profile: The profile to convert + + Returns: + A list of floats + """ + result = [0.0] * profile.get_profile_metadata().get_nr_of_timesteps() + for i, element in enumerate(profile.get_elements()): + result[i] = 0.0 if element is None else float(element) + return result + + +class ClusterPlan: + """Class representing a plan for a cluster.""" + + def __init__( + self, + state: ClusterState, + target: ClusterTarget, + plan_data: ClusterPlanData, + reason: str, + plan_due_by_date: datetime, + parent_plan: Optional["ClusterPlan"] = None, + _id: Optional[str] = None, + global_deviation_score: Optional[float] = None, + constraint_violation_score: Optional[float] = None, + activated_at: Optional[datetime] = None, + planned_energy: Optional[float] = None, + ): + self._state = state + self._target = target + self._plan_data = plan_data + self._reason = reason + self._plan_due_by_date = plan_due_by_date + self._parent_plan = parent_plan + self._id = _id or str(uuid.uuid4()) + self._global_deviation_score = global_deviation_score + self._constraint_violation_score = constraint_violation_score + self._joule_profile = None # Will be initialized when needed + self._activated_at = activated_at + self._planned_energy = planned_energy # Lazy evaluation field + + def get_state(self) -> ClusterState: + return self._state + + def get_target(self) -> ClusterTarget: + return self._target + + def get_plan_data(self) -> ClusterPlanData: + return self._plan_data + + def get_reason(self) -> str: + return self._reason + + def get_plan_due_by_date(self) -> datetime: + return self._plan_due_by_date + + def get_parent_plan(self) -> Optional["ClusterPlan"]: + return self._parent_plan + + def get_id(self) -> str: + return self._id + + def get_activated_at(self) -> Optional[datetime]: + return self._activated_at + + def get_target_energy(self) -> float: + """Get the target energy for this plan. + + Returns: + The target energy + """ + return self._target.get_target_energy() + + def get_planned_energy(self) -> float: + """Get the planned energy for this plan. + + Returns: + The planned energy + """ + if self._planned_energy is None: + # Calculate the planned energy as the sum of all device plans + sum_energy = 0.0 + for device_plan in self._plan_data.get_device_plans(): + sum_energy += device_plan.get_profile().get_total_energy() + self._planned_energy = sum_energy + + return self._planned_energy + + def get_global_deviation_score(self) -> Optional[float]: + """Calculate the score for the deviation between target and plan. Lower is better. + + Returns: + The global deviation score, or None if not set + """ + if self._global_deviation_score is None: + joule_target_segment = ( + self._target.get_global_target_profile().target_elements_to_joule_profile() + ) + if not joule_target_segment.get_elements(): + # No joule target, so that's by default a perfect score! + return 0.0 + + target = joule_target_segment.get_elements() + plan_segment = self.get_joule_profile().subprofile( + joule_target_segment.get_profile_metadata().get_profile_start() + ) + plan = plan_segment.get_elements() + + sum_squared_distance = 0.0 + for i in range(len(target)): + if target[i] is not None: + sum_squared_distance += abs(target[i] - plan[i]) + + if plan_segment.get_total_energy() == 0.0: + self._global_deviation_score = 0.0 + else: + self._global_deviation_score = ( + sum_squared_distance / plan_segment.get_total_energy() + ) + + return self._global_deviation_score + + def get_constraint_violation_score(self) -> Optional[float]: + """Calculate the score for violation of constraint targets. Lower is better. + + Returns: + The constraint violation score, or None if not set + """ + if self._constraint_violation_score is None: + violation_sum = 0.0 + + for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): + plan = cp_profile.get_elements() + congestion_point_target = self._target.get_congestion_point_target( + cp_id + ) + + if congestion_point_target is not None: + # If there is no target, we don't need to calculate it for the violation sum + target_elements = congestion_point_target.get_elements() + + for i in range(len(target_elements)): + element = target_elements[i] + max_joule = element.max_joule + min_joule = element.min_joule + + if max_joule is not None and plan[i] > max_joule: + violation_sum += abs(plan[i] - max_joule) + + if min_joule is not None and plan[i] < min_joule: + violation_sum += abs(min_joule - plan[i]) + + planned_energy = self.get_planned_energy() + if planned_energy == 0.0: + self._constraint_violation_score = 0.0 + else: + self._constraint_violation_score = violation_sum / planned_energy + + return self._constraint_violation_score + + def has_constraint_violation(self) -> bool: + """Check if this plan has any constraint violations. + + Returns: + True if there are constraint violations, False otherwise + """ + for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): + plan = cp_profile.get_elements() + congestion_point_target = self._target.get_congestion_point_target(cp_id) + + if congestion_point_target is not None: + # If there is no target, we don't need to check for violations + target_elements = congestion_point_target.get_elements() + + for i in range(len(target_elements)): + element = target_elements[i] + max_joule = element.max_joule + min_joule = element.min_joule + plan_value = plan[i] + + if max_joule is not None and plan_value > max_joule: + return True + + if min_joule is not None and plan_value < min_joule: + return True + + return False + + def is_compatible(self, other: Any) -> bool: + """Check if this cluster plan is compatible with another profile. + + Args: + other: The other profile to check compatibility with + + Returns: + True if compatible, False otherwise + """ + return self._plan_data.is_compatible(other) + + def subprofile(self, new_start_date: datetime) -> "ClusterPlan": + """Create a subprofile starting at the specified date. + + Args: + new_start_date: The new start date for the profile + + Returns: + A new ClusterPlan instance with adjusted start date + """ + return ClusterPlan( + state=self._state, + target=self._target.subprofile(new_start_date), + plan_data=self._plan_data.subprofile(new_start_date), + reason=self._reason, + plan_due_by_date=self._plan_due_by_date, + parent_plan=None, + _id=self._id, + activated_at=None, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlan": + """Adjust the number of elements in the profile. + + Args: + nr_of_elements: The new number of elements + + Returns: + A new ClusterPlan instance with adjusted number of elements + """ + return ClusterPlan( + state=self._state, + target=self._target.adjust_nr_of_elements(nr_of_elements), + plan_data=self._plan_data.adjust_nr_of_elements(nr_of_elements), + reason=self._reason, + plan_due_by_date=self._plan_due_by_date, + parent_plan=None, + _id=self._id, + activated_at=None, + ) + + def get_profile_metadata(self) -> Any: + """Get the profile metadata for this plan. + + Returns: + The profile metadata + """ + return self._target.get_profile_metadata() + + def get_profile_per_congestion_point(self) -> Dict[str, JouleProfile]: + """Get the profile for each congestion point. + + Returns: + A dictionary mapping congestion point IDs to profiles + """ + result = {} + + for device_plan in self._plan_data.get_device_plans(): + cp_id = self._state.get_congestion_point(device_plan.get_connection_id()) + profile = device_plan.get_profile() + + if cp_id in result: + result[cp_id] = result[cp_id].add(profile) + else: + result[cp_id] = profile + + return result + + def get_joule_profile(self) -> JouleProfile: + """Get the JouleProfile for this plan. + + Returns: + The JouleProfile for this plan + """ + if self._joule_profile is None: + # Initialize the JouleProfile if needed + profile_metadata = self.get_profile_metadata() + self._joule_profile = JouleProfile( + profile_start=profile_metadata.get_profile_start(), + timestep_duration=profile_metadata.get_timestep_duration(), + ) + + # Add all device plans to the profile + for device_plan in self._plan_data.get_device_plans(): + self._joule_profile = self._joule_profile.add(device_plan.get_profile()) + + return self._joule_profile diff --git a/flexmeasures_s2/profile_steering/cluster_target.py b/flexmeasures_s2/profile_steering/cluster_target.py new file mode 100644 index 0000000..3286954 --- /dev/null +++ b/flexmeasures_s2/profile_steering/cluster_target.py @@ -0,0 +1,226 @@ +from datetime import datetime +from typing import Dict, Optional, Any, List +import uuid + +# Common data types +from flexmeasures_s2.profile_steering.common.joule_range_profile import ( + JouleRangeProfile, +) +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile + + +class ClusterTarget: + """ + ClusterTarget instances are used by traders to express how a plan should look like. + + There are two levels at which a target can be set: + 1. Global level (i.e., a target for the cluster as a whole) + 2. Congestion point level + + The global target is a TargetProfile (i.e., a line) and the congestion point targets + are JouleRangeProfile instances, allowing congestion targets to be set with + minimum and maximum constraints. + """ + + def __init__( + self, + generated_at: datetime, + parent_id: Any, + generated_by: Any, + global_target_profile: TargetProfile, + congestion_point_targets: Optional[Dict[str, JouleRangeProfile]] = None, + ): + """ + Initialize a ClusterTarget instance. + + Args: + generated_at: When the target was generated + parent_id: The ID of the parent target + generated_by: The entity that generated the target + global_target_profile: The global target profile for the cluster + congestion_point_targets: Targets for specific congestion points + """ + self._id = str(uuid.uuid4()) + self._generated_at = generated_at + self._parent_id = parent_id + self._generated_by = generated_by + self._global_target_profile = global_target_profile + self._congestion_point_targets = congestion_point_targets or {} + + # Validate + if global_target_profile is None: + raise ValueError("global_target_profile cannot be None") + + if congestion_point_targets is not None: + for cp_id, cp_target in congestion_point_targets.items(): + if not cp_target.is_compatible(global_target_profile): + raise ValueError( + f"Congestion point target {cp_id} is not compatible with the global target profile. " + f"Expected global metadata: {global_target_profile.get_profile_metadata()}, " + f"but congestion profile had {cp_target.get_profile_metadata()}" + ) + + def get_id(self) -> str: + """ + Get the ID of this target. + + Returns: + The target ID + """ + return self._id + + def get_generated_at(self) -> datetime: + """ + Get when this target was generated. + Returns: + The generation timestamp + """ + return self._generated_at + + def get_parent_id(self) -> Any: + """ + Get the parent ID of this target. + + Returns: + The parent ID + """ + return self._parent_id + + def get_generated_by(self) -> Any: + """ + Get the entity that generated this target. + + Returns: + The generator entity + """ + return self._generated_by + + def get_global_target_profile(self) -> TargetProfile: + """ + Get the global target profile. + + Returns: + The global target profile + """ + return self._global_target_profile + + def get_congestion_point_targets(self) -> Dict[str, JouleRangeProfile]: + """ + Get all congestion point targets. + + Returns: + A dictionary mapping congestion point IDs to their targets + """ + return self._congestion_point_targets + + def get_congestion_point_target( + self, congestion_point_id: str + ) -> Optional[JouleRangeProfile]: + """ + Get the target for a specific congestion point. + + Args: + congestion_point_id: The ID of the congestion point + + Returns: + The target for the congestion point, or None if not found + """ + return self._congestion_point_targets.get(congestion_point_id) + + def get_profile_metadata(self) -> Any: + """ + Get the profile metadata. + + Returns: + The profile metadata + """ + return self._global_target_profile.get_profile_metadata() + + def get_target_energy(self) -> float: + """ + Get the total target energy. + + Returns: + The total energy + """ + return self._global_target_profile.get_total_energy() + + def is_compatible(self, other: Any) -> bool: + """ + Check if this target is compatible with another profile. + + Args: + other: The other profile to check compatibility with + + Returns: + True if compatible, False otherwise + """ + return self._global_target_profile.is_compatible(other) + + def subprofile(self, new_start_date: datetime) -> "ClusterTarget": + """ + Create a subprofile starting at the specified date. + + Args: + new_start_date: The new start date for the profile + + Returns: + A new ClusterTarget instance with adjusted start date + """ + plans = {} + for cp_id, cp_target in self._congestion_point_targets.items(): + plans[cp_id] = cp_target.subprofile(new_start_date) + + return ClusterTarget( + self._generated_at, + self._parent_id, + self._generated_by, + self._global_target_profile.subprofile(new_start_date), + plans, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterTarget": + """ + Adjust the number of elements in the profile. + + Args: + nr_of_elements: The new number of elements + + Returns: + A new ClusterTarget instance with adjusted number of elements + """ + plans = {} + for cp_id, cp_target in self._congestion_point_targets.items(): + plans[cp_id] = cp_target.adjust_nr_of_elements(nr_of_elements) + + return ClusterTarget( + self._generated_at, + self._parent_id, + self._generated_by, + self._global_target_profile.adjust_nr_of_elements(nr_of_elements), + plans, + ) + + def set_congestion_point_target( + self, + congestion_point_id: str, + congestion_point_target: JouleRangeProfile, + elements: Optional[List[Any]] = None, + ): + """ + Set a target for a specific congestion point. + + Args: + congestion_point_id: The ID of the congestion point + congestion_point_target: The target for the congestion point + elements: Optional elements to set in the target profile + """ + if not congestion_point_target.is_compatible(self._global_target_profile): + raise ValueError( + f"Congestion point target {congestion_point_id} is not compatible with the global target profile" + ) + + self._congestion_point_targets[congestion_point_id] = congestion_point_target + + if elements is not None: + self._congestion_point_targets[congestion_point_id].set_elements(elements) diff --git a/flexmeasures_s2/profile_steering/common/abstract_profile.py b/flexmeasures_s2/profile_steering/common/abstract_profile.py index 8fae527..0ad79c5 100644 --- a/flexmeasures_s2/profile_steering/common/abstract_profile.py +++ b/flexmeasures_s2/profile_steering/common/abstract_profile.py @@ -100,3 +100,7 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> PT: @abstractmethod def is_compatible(self, other: PT) -> bool: return self.metadata == other.metadata + + @abstractmethod + def default_value(self) -> E: + pass diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py index dbb0215..a18c65d 100644 --- a/flexmeasures_s2/profile_steering/common/joule_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -22,6 +22,9 @@ def validate(self, profile_metadata: ProfileMetadata, elements: List[int]): super().validate(profile_metadata, elements) # Add any JouleProfile-specific validation here if needed + def default_value(self) -> None: + return None + def subprofile(self, new_start_date: datetime) -> "JouleProfile": index = self.index_at(new_start_date) if index < 0: @@ -56,7 +59,12 @@ def avg_power_at(self, date: datetime) -> Optional[float]: def add(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): raise ValueError("Profiles are not compatible") - summed_elements = [a + b for a, b in zip(self.elements, other.elements)] + summed_elements = [0] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i] is None or other.elements[i] is None: + summed_elements[i] = self.default_value() + else: + summed_elements[i] = self.elements[i] + other.elements[i] return JouleProfile( self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), @@ -66,7 +74,12 @@ def add(self, other: "JouleProfile") -> "JouleProfile": def subtract(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): raise ValueError("Profiles are not compatible") - diff_elements = [a - b for a, b in zip(self.elements, other.elements)] + diff_elements = [0] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i] is None or other.elements[i] is None: + diff_elements[i] = self.default_value() + else: + diff_elements[i] = self.elements[i] - other.elements[i] return JouleProfile( self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), @@ -101,7 +114,8 @@ def is_above_or_equal(self, other: "JouleProfile") -> bool: def minimum(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): raise ValueError("Profiles are not compatible") - min_elements = [min(a, b) for a, b in zip(self.elements, other.elements)] + # skip None values + min_elements = [min(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] return JouleProfile( self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), @@ -111,7 +125,8 @@ def minimum(self, other: "JouleProfile") -> "JouleProfile": def maximum(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): raise ValueError("Profiles are not compatible") - max_elements = [max(a, b) for a, b in zip(self.elements, other.elements)] + # skip None values + max_elements = [max(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] return JouleProfile( self.metadata.get_profile_start(), self.metadata.get_timestep_duration(), diff --git a/flexmeasures_s2/profile_steering/common/joule_range_profile.py b/flexmeasures_s2/profile_steering/common/joule_range_profile.py index 35bdddd..ec0cfc0 100644 --- a/flexmeasures_s2/profile_steering/common/joule_range_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_range_profile.py @@ -63,10 +63,7 @@ def __init__( metadata = profile_start if nr_of_timesteps is None: nr_of_timesteps = metadata.get_nr_of_timesteps() - if min_value is None: - min_value = 0 - if max_value is None: - max_value = 8400000 + elements = self._create_element_array(nr_of_timesteps, min_value, max_value) else: @@ -94,6 +91,9 @@ def _create_element_array( """Create an array of elements with the given min and max values.""" return [Element(min_value, max_value) for _ in range(nr_of_elements)] + def default_value(self) -> Element: + return Element(None, None) + def validate(self, profile_metadata: ProfileMetadata, elements: List[Element]): """Validate the elements and metadata for this profile.""" super().validate(profile_metadata, elements) diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py index cf657da..1a38627 100644 --- a/flexmeasures_s2/profile_steering/common/proposal.py +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -28,6 +28,10 @@ def __init__( def get_global_improvement_value(self) -> float: if self.global_improvement_value is None: + # print(f"self.old_plan: {self.old_plan}") + # print(f"self.proposed_plan: {self.proposed_plan}") + # print the quadratic distance of the global diff target + # print(f"self.global_diff_target.sum_quadratic_distance(): {self.global_diff_target.sum_quadratic_distance()}") self.global_improvement_value = ( self.global_diff_target.sum_quadratic_distance() - self.global_diff_target.add(self.old_plan) @@ -63,21 +67,26 @@ def get_congestion_improvement_value(self) -> float: exceed_max_target_old = self.diff_to_congestion_max.minimum( zero_profile ).sum_quadratic_distance() + # print(f"exceed_max_target_old: {exceed_max_target_old}") + # print(f"self.diff_to_congestion_max: {self.diff_to_congestion_max}") exceed_max_target_proposal = ( self.diff_to_congestion_max.add(self.old_plan) .subtract(self.proposed_plan) .minimum(zero_profile) .sum_quadratic_distance() ) + # print(f"exceed_max_target_proposal: {exceed_max_target_proposal}") exceed_min_target_old = self.diff_to_congestion_min.maximum( zero_profile - ).sum_quadratic_distance() + ).sum_quadratic_distance() + # print(f"exceed_min_target_old: {exceed_min_target_old}") exceed_min_target_proposal = ( self.diff_to_congestion_min.add(self.old_plan) .subtract(self.proposed_plan) .maximum(zero_profile) .sum_quadratic_distance() ) + # print(f"exceed_min_target_proposal: {exceed_min_target_proposal}") if ( exceed_max_target_old == exceed_max_target_proposal and exceed_min_target_old == exceed_min_target_proposal @@ -90,6 +99,7 @@ def get_congestion_improvement_value(self) -> float: - exceed_max_target_proposal - exceed_min_target_proposal ) + # print(f"congestion_improvement_value: {self.congestion_improvement_value}") return self.congestion_improvement_value def is_preferred_to(self, other: "Proposal") -> bool: @@ -116,3 +126,6 @@ def get_proposed_plan(self) -> JouleProfile: def get_old_plan(self) -> JouleProfile: return self.old_plan + + def get_energy(self) -> JouleProfile: + return self.proposed_plan diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py index 9d9d6ac..0ee6ea2 100644 --- a/flexmeasures_s2/profile_steering/common/target_profile.py +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -45,6 +45,9 @@ def validate( super().validate(profile_metadata, elements) # Add any TargetProfile-specific validation if needed + def default_value(self) -> "TargetProfile.Element": + return TargetProfile.NULL_ELEMENT + def subprofile(self, new_start_date: datetime) -> "TargetProfile": index = self.index_at(new_start_date) if index < 0: @@ -163,3 +166,11 @@ def null_profile(metadata: ProfileMetadata) -> "TargetProfile": metadata.get_timestep_duration(), [TargetProfile.NULL_ELEMENT] * metadata.get_nr_of_timesteps(), ) + + @staticmethod + def from_joule_profile(joule_profile: JouleProfile) -> "TargetProfile": + return TargetProfile( + joule_profile.metadata.profile_start, + joule_profile.metadata.timestep_duration, + [TargetProfile.JouleElement(e) for e in joule_profile.elements], + ) diff --git a/flexmeasures_s2/profile_steering/common_data_structures.py b/flexmeasures_s2/profile_steering/common_data_structures.py new file mode 100644 index 0000000..7909899 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common_data_structures.py @@ -0,0 +1,48 @@ +from datetime import datetime +from typing import List, Dict, Any, Optional + +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile + + +class ClusterState: + """Class representing the state of a cluster of devices.""" + + def __init__(self, device_states: Dict[str, Any] = None): + self._device_states = device_states or {} + self._congestion_points = {} # Map from connection ID to congestion point ID + + def get_device_states(self) -> Dict[str, Any]: + return self._device_states + + def get_congestion_point(self, connection_id: str) -> Optional[str]: + return self._congestion_points.get(connection_id) + + def set_congestion_point(self, connection_id: str, congestion_point_id: str): + self._congestion_points[connection_id] = congestion_point_id + + def get_congestion_points(self) -> List[str]: + return list(set(self._congestion_points.values())) + + +class DevicePlan: + """Class representing a plan for a device.""" + + def __init__(self, device_id: str, profile: JouleProfile): + self._device_id = device_id + self._profile = profile + + def get_device_id(self) -> str: + return self._device_id + + def get_connection_id(self) -> str: + """Get the connection ID for this device plan. + + This is often the same as the device ID but might be different in some cases. + + Returns: + The connection ID + """ + return self._device_id + + def get_profile(self) -> JouleProfile: + return self._profile diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index bb5a3d9..4c3ca0b 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -64,11 +64,16 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: current_planning = current_planning.add( device.create_initial_planning(plan_due_by_date) ) - + # print(f"Current planning: {current_planning}") # Check if the current planning is within the congestion target range if self.congestion_target.is_within_range(current_planning): + print(f"Current planning is within the congestion target range. Returning it.") return current_planning + # If the current planning is not within the congestion target range, optimize it + print(f"Current planning is not within the congestion target range. Optimizing it.") + + # print(f"Congestion target: {self.congestion_target}") i = 0 best_proposal = None @@ -162,7 +167,8 @@ def create_improved_planning( diff_to_min_value = self.congestion_target.difference_with_min_value( current_planning ) - + # print(f"diff_to_max_value: {diff_to_max_value}") + # print(f"diff_to_min_value: {diff_to_min_value}") # Try to get improved plans from each device controller for device in self.devices: if device.get_priority_class() <= priority_class: @@ -170,10 +176,13 @@ def create_improved_planning( # Get an improved plan from this device proposal = device.create_improved_planning( difference_profile, - diff_to_max_value, + diff_to_max_value, diff_to_min_value, plan_due_by_date, ) + # print("Plans old vs New") + # print(f"old: {proposal.get_old_plan()}") + # print(f"new: {proposal.get_proposed_plan()}") if proposal.get_congestion_improvement_value() < 0: print( f"{device.get_device_name()}, congestion improvement: {proposal.get_congestion_improvement_value()}" @@ -185,6 +194,7 @@ def create_improved_planning( print( f"Error getting proposal from device {device.get_device_id()}: {e}" ) + continue if best_proposal is None: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index 2a21f54..0c73619 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -29,10 +29,8 @@ class S2FrbcDeviceStateWrapper: def __init__(self, device_state): self.device_state: S2FrbcDeviceState = device_state - self.nr_of_buckets: int = ( - device_state.get_computational_parameters().get_nr_of_buckets() - ) - self.nr_of_stratification_layers: int = 0 # Initialize appropriately + self.nr_of_buckets: int = self.device_state.get_computational_parameters().get_nr_of_buckets() + self.nr_of_stratification_layers: int = self.device_state.get_computational_parameters().get_stratification_layers() self.actuator_operation_mode_map_per_timestep: Dict[ datetime, Dict[str, List[str]] ] = {} diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py index df7a35b..5777d8d 100644 --- a/flexmeasures_s2/profile_steering/root_planner.py +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -93,6 +93,7 @@ def plan( # Get proposals from each congestion point controller for cpc in self.cp_controllers: + # print("Improving") try: proposal = cpc.create_improved_planning( difference_profile, diff --git a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py index 90046aa..7c2bef7 100644 --- a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py +++ b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py @@ -1,297 +1,293 @@ from typing import List -JouleProfileTarget: List = [ - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -] - - +JouleProfileTarget: List = [0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 8000000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0]; def get_JouleProfileTarget() -> List: return JouleProfileTarget diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index dd1ac79..fc4c500 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -168,97 +168,83 @@ def create_ev_device_state( return device_state -# -# def test_connexxion_ev_bus_baseline_byd_225(): -# # Arrange -# device_id = "01-01-70.225" -# omloop_starts_at = datetime.fromtimestamp(3600) -# cet = timezone(timedelta(hours=1)) -# charge_power_soc_percentage_per_second_night = 0.0054012349 -# charging_power_kw_night = 28 -# -# charge_power_soc_percentage_per_second_day = 0.01099537114 -# charging_power_kw_day = 57 -# -# # Create system descriptions and forecasts -# -# start_of_recharge1 = omloop_starts_at.astimezone(cet) -# recharge_duration1 = timedelta(hours=7, minutes=13) -# soc_percentage_before_charging1 = 0 -# final_fill_level_target1 = 100 -# -# # Create system description for driving -# -# start_of_drive1 = start_of_recharge1 + recharge_duration1 -# drive_duration1 = timedelta(hours=4, minutes=36) -# drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 -# soc_percentage_before_driving1 = 100 -# -# start_of_recharge2 = start_of_drive1 + drive_duration1 -# recharge_duration2 = timedelta(seconds=5360) -# soc_percentage_before_charging2 = 37.7463951 -# final_fill_level_target2 = 94.4825134 -# -# device_state = create_ev_device_state( -# device_id, -# omloop_starts_at, -# cet, -# charge_power_soc_percentage_per_second_night, -# charging_power_kw_night, -# charge_power_soc_percentage_per_second_day, -# charging_power_kw_day, -# soc_percentage_before_charging1, -# final_fill_level_target1, -# recharge_duration1, -# start_of_recharge1, -# drive_duration1, -# start_of_drive1, -# drive_consume_soc_per_second1, -# soc_percentage_before_driving1, -# soc_percentage_before_charging2, -# final_fill_level_target2, -# recharge_duration2, -# start_of_recharge2, -# ) -# -# epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) -# target_metadata = ProfileMetadata( -# profile_start=epoch_time, -# timestep_duration=timedelta(seconds=300), -# nr_of_timesteps=288, -# ) -# -# plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) -# -# planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) -# -# # Start timing -# import time -# -# # Number of iterations -# num_iterations = 1 -# total_time = 0 -# -# # Run the function multiple times and measure execution time -# for i in range(num_iterations): -# start_time = time.time() -# planning = planner.create_initial_planning(plan_due_by_date, ids) -# end_time = time.time() -# execution_time = end_time - start_time -# total_time += execution_time -# -# # Print progress every 1000 iterations -# -# print(f"Completed {i + 1} iterations") -# -# # Calculate and print average execution time -# average_execution_time = total_time / num_iterations -# print( -# f"Average execution time over {num_iterations} iterations: {average_execution_time:.6f} seconds" -# ) -# print(planning.elements) -# assert planning.elements == get_JouleProfileTarget() -# +@pytest.mark.skip(reason="Skipping test_connexxion_ev_bus_baseline_byd_225") +def test_connexxion_ev_bus_baseline_byd_225(): + # Arrange + device_id = "01-01-70.225" + omloop_starts_at = datetime.fromtimestamp(3600) + cet = timezone(timedelta(hours=1)) + charge_power_soc_percentage_per_second_night = 0.0054012349 + charging_power_kw_night = 28 + + charge_power_soc_percentage_per_second_day = 0.01099537114 + charging_power_kw_day = 57 + + # Create system descriptions and forecasts + + start_of_recharge1 = omloop_starts_at.astimezone(cet) + recharge_duration1 = timedelta(hours=7, minutes=13) + soc_percentage_before_charging1 = 0 + final_fill_level_target1 = 100 + + # Create system description for driving + + start_of_drive1 = start_of_recharge1 + recharge_duration1 + drive_duration1 = timedelta(hours=4, minutes=36) + drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 + soc_percentage_before_driving1 = 100 + + start_of_recharge2 = start_of_drive1 + drive_duration1 + recharge_duration2 = timedelta(seconds=10000) + soc_percentage_before_charging2 = 37.7463951 + final_fill_level_target2 = 94.4825134 + + device_state = create_ev_device_state( + device_id, + omloop_starts_at, + cet, + charge_power_soc_percentage_per_second_night, + charging_power_kw_night, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging1, + final_fill_level_target1, + recharge_duration1, + start_of_recharge1, + drive_duration1, + start_of_drive1, + drive_consume_soc_per_second1, + soc_percentage_before_driving1, + soc_percentage_before_charging2, + final_fill_level_target2, + recharge_duration2, + start_of_recharge2, + ) + + epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) + target_metadata = ProfileMetadata( + profile_start=epoch_time, + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288, + ) + + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + + planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) + + planning = planner.create_initial_planning(plan_due_by_date, ids) + print(planning.get_energy().elements) + target = JouleProfile(profile_start=target_metadata.get_profile_start(), timestep_duration=target_metadata.get_timestep_duration(), elements=get_JouleProfileTarget()) + + diff_to_global_target = target.subtract(planning.get_energy()) + print(diff_to_global_target.elements) + target_profile = TargetProfile.from_joule_profile(diff_to_global_target) + #create a null profile + null_profile = JouleProfile(profile_start=target_metadata.get_profile_start(), timestep_duration=target_metadata.get_timestep_duration(), elements=[None] * target_metadata.get_nr_of_timesteps()) + improved = planner.create_improved_planning(target_profile, null_profile, null_profile, plan_due_by_date) + plot_planning_results(target_metadata.get_timestep_duration(), target_metadata.get_nr_of_timesteps(), improved.get_energy().elements, get_JouleProfileTarget()) + + assert improved.get_energy().elements == get_JouleProfileTarget() @staticmethod @@ -273,12 +259,12 @@ def create_recharge_system_description( on_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), fill_rate=NumberRange( - start_of_range=charge_power_soc_percentage_per_second, + start_of_range = 0, end_of_range=charge_power_soc_percentage_per_second, ), power_ranges=[ PowerRange( - start_of_range=charging_power_kw * 1000, + start_of_range=charging_power_kw * 0, end_of_range=charging_power_kw * 1000, commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, ) @@ -595,6 +581,7 @@ def plot_planning_results( def test_planning_service_impl_with_ev_device(): """Test the PlanningServiceImpl with an EV device.""" + print("Test the PlanningServiceImpl with an EV device.") # Arrange device_id = "bat1" omloop_starts_at = datetime.fromtimestamp(3600) @@ -620,7 +607,7 @@ def test_planning_service_impl_with_ev_device(): # Second recharge period start_of_recharge2 = start_of_drive1 + drive_duration1 - recharge_duration2 = timedelta(seconds=5360) + recharge_duration2 = timedelta(seconds=10000) # 1.5 hours soc_percentage_before_charging2 = 37.7463951 final_fill_level_target2 = 94.4825134 @@ -664,11 +651,12 @@ def test_planning_service_impl_with_ev_device(): # Create planning service config config = PlanningServiceConfig( - energy_improvement_criterion=0.01, - cost_improvement_criterion=0.01, + energy_improvement_criterion=10.0, + cost_improvement_criterion=1.0, congestion_retry_iterations=5, multithreaded=False, ) + print("Generating plan!") # Create planning service implementation service = PlanningServiceImpl(config) @@ -685,7 +673,6 @@ def test_planning_service_impl_with_ev_device(): # Set due by date for planning plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - # Act - Generate a plan start_time = time.time() cluster_plan = service.plan( @@ -717,12 +704,7 @@ def test_planning_service_impl_with_ev_device(): print("Got device plan") # Print and verify the energy profile energy_profile = device_plan.get_energy_profile() - print(f"Energy profile has {len(energy_profile.elements)} elements") - - # Print the first few elements to verify the plan - print("First 10 energy profile elements:") - for i in range(min(10, len(energy_profile.elements))): - print(f" Timestep {i}: {energy_profile.elements[i]} joules") + # Basic assertion - the energy profile should have the expected number of elements assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() From 102a23951bcafc1dd5c742eb3b2b1b146e6f5c96 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 19 May 2025 14:26:52 +0200 Subject: [PATCH 27/33] The Planning schedule works right now. The profiling resutls are also added Signed-off-by: Vlad Iftime --- .../profile_steering/cluster_plan.py | 21 +- .../common/abstract_profile.py | 52 +- .../profile_steering/common/joule_profile.py | 105 +- .../common_data_structures.py | 14 +- .../congestion_point_planner.py | 5 +- .../frbc/operation_mode_profile_tree.py | 6 + .../profile_steering/root_planner.py | 2 +- .../tests/joule_profile_example.py | 580 +- .../tests/profiling_10evs.txt | 95 + .../tests/profiling_20_buckets.txt | 8244 ++ .../profile_steering/tests/test.txt | 69387 ++++++++++++++++ .../tests/test_frbc_device.py | 228 +- 12 files changed, 78274 insertions(+), 465 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_10evs.txt create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt create mode 100644 flexmeasures_s2/profile_steering/tests/test.txt diff --git a/flexmeasures_s2/profile_steering/cluster_plan.py b/flexmeasures_s2/profile_steering/cluster_plan.py index 3bbc759..36a5ac8 100644 --- a/flexmeasures_s2/profile_steering/cluster_plan.py +++ b/flexmeasures_s2/profile_steering/cluster_plan.py @@ -670,16 +670,15 @@ def get_joule_profile(self) -> JouleProfile: Returns: The JouleProfile for this plan """ - if self._joule_profile is None: - # Initialize the JouleProfile if needed - profile_metadata = self.get_profile_metadata() - self._joule_profile = JouleProfile( - profile_start=profile_metadata.get_profile_start(), - timestep_duration=profile_metadata.get_timestep_duration(), - ) - # Add all device plans to the profile - for device_plan in self._plan_data.get_device_plans(): - self._joule_profile = self._joule_profile.add(device_plan.get_profile()) + # Add all device plans to the profile + sum_profile = JouleProfile( + profile_start=self.get_profile_metadata().get_profile_start(), + timestep_duration=self.get_profile_metadata().get_timestep_duration(), + profile_length=self.get_profile_metadata().get_nr_of_timesteps(), + value=0.0, + ) + for device_plan in self._plan_data.get_device_plans(): + sum_profile = sum_profile.add(device_plan.get_energy_profile()) - return self._joule_profile + return sum_profile diff --git a/flexmeasures_s2/profile_steering/common/abstract_profile.py b/flexmeasures_s2/profile_steering/common/abstract_profile.py index 0ad79c5..7313285 100644 --- a/flexmeasures_s2/profile_steering/common/abstract_profile.py +++ b/flexmeasures_s2/profile_steering/common/abstract_profile.py @@ -1,5 +1,5 @@ from abc import ABC, abstractmethod -from typing import List, TypeVar, Generic +from typing import List, TypeVar, Generic, Optional from datetime import datetime, timedelta from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata @@ -8,10 +8,50 @@ class AbstractProfile(ABC, Generic[E, PT]): - def __init__(self, profile_metadata: ProfileMetadata, elements: List[E]): - self.metadata = profile_metadata - self.elements = elements - self.validate(profile_metadata, elements) + def __init__( + self, + profile_metadata: Optional[ProfileMetadata] = None, + elements: Optional[List[E]] = None, + profile_start: Optional[datetime] = None, + timestep_duration: Optional[timedelta] = None, + value: Optional[E] = None, + nr_of_elements: Optional[int] = None + ): + """ + Initialize an AbstractProfile with various parameter combinations. + + Args: + profile_metadata: ProfileMetadata object containing start time and duration + elements: List of profile elements + profile_start: Start time of the profile + timestep_duration: Duration of each timestep + value: Single value to fill the entire profile + nr_of_elements: Number of elements when using a single value + """ + # Case 1: Initialize with metadata and elements + if profile_metadata is not None and elements is not None: + self.metadata = profile_metadata + self.elements = elements + self.validate(profile_metadata, elements) + return + + # Case 2: Initialize with start time, duration and elements + if profile_start is not None and timestep_duration is not None and elements is not None: + self.metadata = ProfileMetadata(profile_start, timestep_duration, len(elements)) + self.elements = elements + self.validate(self.metadata, elements) + return + + # Case 3: Initialize with start time, duration, single value and number of elements + if profile_start is not None and timestep_duration is not None and value is not None and nr_of_elements is not None: + self.elements = [value] * nr_of_elements + self.metadata = ProfileMetadata(profile_start, timestep_duration, nr_of_elements) + self.validate(self.metadata, self.elements) + return + + # Case 4: Empty initialization (for serialization) + self.metadata = None + self.elements = [] @abstractmethod def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): @@ -19,7 +59,7 @@ def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): raise ValueError("elements cannot be null") if ( 24 * 60 * 60 * 1000 - ) % profile_metadata.get_timestep_duration().total_seconds() != 0: + ) % profile_metadata.get_timestep_duration().total_seconds() * 1000 != 0: raise ValueError("A day should be dividable by the timeStepDuration") if ( not self.start_of_current_aligned_date( diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py index a18c65d..a0a45da 100644 --- a/flexmeasures_s2/profile_steering/common/joule_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -1,5 +1,5 @@ from datetime import datetime, timedelta -from typing import List, Optional +from typing import List, Optional, Union from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata @@ -7,16 +7,66 @@ class JouleProfile(AbstractProfile[int, "JouleProfile"]): def __init__( self, - profile_start: datetime, - timestep_duration: timedelta, + profile_start: Optional[datetime] = None, + timestep_duration: Optional[timedelta] = None, elements: Optional[List[int]] = None, + metadata: Optional[ProfileMetadata] = None, + value: Optional[int] = None, + profile_length: Optional[int] = None, + other_profile: Optional['JouleProfile'] = None ): - metadata = ProfileMetadata( - profile_start, - timestep_duration, - nr_of_timesteps=len(elements) if elements else 0, - ) - super().__init__(metadata, elements if elements is not None else []) + """ + Initialize a JouleProfile with various parameter combinations. + + Args: + profile_start: Start time of the profile + timestep_duration: Duration of each timestep + elements: List of energy values + metadata: ProfileMetadata object containing start time and duration + value: Single value to fill the entire profile + profile_length: Length of the profile when using a single value + other_profile: Another JouleProfile to copy from + """ + # Case 1: Copy from another profile + if other_profile is not None: + super().__init__( + profile_metadata=other_profile.get_profile_metadata(), + elements=other_profile.get_elements().copy() + ) + return + + # Case 2: Initialize from metadata + if metadata is not None: + if elements is not None: + super().__init__(profile_metadata=metadata, elements=elements) + elif value is not None: + elements = [value] * metadata.nr_of_timesteps + super().__init__(profile_metadata=metadata, elements=elements) + else: + super().__init__(profile_metadata=metadata, elements=[]) + return + + # Case 3: Initialize with single value and profile length + if value is not None and profile_length is not None: + elements = [value] * profile_length + super().__init__( + profile_start=profile_start, + timestep_duration=timestep_duration, + elements=elements + ) + return + + # Case 4: Basic initialization + if profile_start is not None and timestep_duration is not None: + super().__init__( + profile_start=profile_start, + timestep_duration=timestep_duration, + elements=elements if elements is not None else [] + ) + return + + # Case 5: Empty initialization (for serialization) + super().__init__() def validate(self, profile_metadata: ProfileMetadata, elements: List[int]): super().validate(profile_metadata, elements) @@ -31,7 +81,9 @@ def subprofile(self, new_start_date: datetime) -> "JouleProfile": raise ValueError("New start date is outside profile range") new_elements = self.elements[index:] return JouleProfile( - new_start_date, self.metadata.get_timestep_duration(), new_elements + new_start_date, + self.get_profile_metadata().get_timestep_duration(), + new_elements ) def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleProfile": @@ -40,21 +92,20 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleProfile": else: new_elements = self.elements + [0] * (nr_of_elements - len(self.elements)) return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.get_profile_metadata().get_profile_start(), + self.get_profile_metadata().get_timestep_duration(), new_elements, ) def is_compatible(self, other: AbstractProfile) -> bool: return ( - self.metadata.get_timestep_duration() - == other.get_profile_metadata().get_timestep_duration() - and len(self.elements) == len(other.get_elements()) + self.get_profile_metadata() + == other.get_profile_metadata() ) def avg_power_at(self, date: datetime) -> Optional[float]: element = self.element_at(date) - return element / self.metadata.get_timestep_duration().total_seconds() + return element / self.get_profile_metadata().get_timestep_duration().total_seconds() def add(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): @@ -66,8 +117,8 @@ def add(self, other: "JouleProfile") -> "JouleProfile": else: summed_elements[i] = self.elements[i] + other.elements[i] return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.get_profile_metadata().get_profile_start(), + self.get_profile_metadata().get_timestep_duration(), summed_elements, ) @@ -81,16 +132,16 @@ def subtract(self, other: "JouleProfile") -> "JouleProfile": else: diff_elements[i] = self.elements[i] - other.elements[i] return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.get_profile_metadata().get_profile_start(), + self.get_profile_metadata().get_timestep_duration(), diff_elements, ) def absolute_values(self) -> "JouleProfile": abs_elements = [abs(e) for e in self.elements] return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.get_profile_metadata().get_profile_start(), + self.get_profile_metadata().get_timestep_duration(), abs_elements, ) @@ -117,8 +168,8 @@ def minimum(self, other: "JouleProfile") -> "JouleProfile": # skip None values min_elements = [min(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.get_profile_metadata().get_profile_start(), + self.get_profile_metadata().get_timestep_duration(), min_elements, ) @@ -128,8 +179,8 @@ def maximum(self, other: "JouleProfile") -> "JouleProfile": # skip None values max_elements = [max(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.get_profile_metadata().get_profile_start(), + self.get_profile_metadata().get_timestep_duration(), max_elements, ) @@ -148,4 +199,4 @@ def get_energy_for_timestep(self, index: int) -> Optional[int]: return None def __str__(self) -> str: - return f"JouleProfile(elements={self.elements}, profile_start={self.metadata.get_profile_start()}, timestep_duration={self.metadata.get_timestep_duration()})" + return f"JouleProfile(elements={self.elements}, profile_start={self.get_profile_metadata().get_profile_start()}, timestep_duration={self.get_profile_metadata().get_timestep_duration()})" diff --git a/flexmeasures_s2/profile_steering/common_data_structures.py b/flexmeasures_s2/profile_steering/common_data_structures.py index 7909899..3a67895 100644 --- a/flexmeasures_s2/profile_steering/common_data_structures.py +++ b/flexmeasures_s2/profile_steering/common_data_structures.py @@ -7,21 +7,25 @@ class ClusterState: """Class representing the state of a cluster of devices.""" - def __init__(self, device_states: Dict[str, Any] = None): + def __init__(self, timestamp: datetime, device_states: Dict[str, Any] = None, congestion_points_by_connection_id: Dict[str, str] = None): + self._timestamp = timestamp + self._device_states = device_states or {} + self._congestion_points_by_connection_id = congestion_points_by_connection_id or {} + + def set_device_states(self, device_states: Dict[str, Any] = None): self._device_states = device_states or {} - self._congestion_points = {} # Map from connection ID to congestion point ID def get_device_states(self) -> Dict[str, Any]: return self._device_states def get_congestion_point(self, connection_id: str) -> Optional[str]: - return self._congestion_points.get(connection_id) + return self._congestion_points_by_connection_id.get(connection_id) def set_congestion_point(self, connection_id: str, congestion_point_id: str): - self._congestion_points[connection_id] = congestion_point_id + self._congestion_points_by_connection_id[connection_id] = congestion_point_id def get_congestion_points(self) -> List[str]: - return list(set(self._congestion_points.values())) + return list(set(self._congestion_points_by_connection_id.values())) class DevicePlan: diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index 4c3ca0b..f63eded 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -64,7 +64,9 @@ def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: current_planning = current_planning.add( device.create_initial_planning(plan_due_by_date) ) - # print(f"Current planning: {current_planning}") + # print(f"Initial planning after adding device {device.get_device_id()}: {current_planning}") + + # Check if the current planning is within the congestion target range if self.congestion_target.is_within_range(current_planning): print(f"Current planning is within the congestion target range. Returning it.") @@ -181,6 +183,7 @@ def create_improved_planning( plan_due_by_date, ) # print("Plans old vs New") + # print(f"device: {device.get_device_name()}") # print(f"old: {proposal.get_old_plan()}") # print(f"new: {proposal.get_proposed_plan()}") if proposal.get_congestion_improvement_value() < 0: diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py index b2c09a8..91ae363 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -138,6 +138,8 @@ def __init__( def generate_timesteps(self) -> None: time_step_start = self.profile_metadata.get_profile_start() for i in range(self.profile_metadata.get_nr_of_timesteps()): + if i == 187: + print("here") time_step_end = ( time_step_start + self.profile_metadata.get_timestep_duration() ) @@ -282,9 +284,13 @@ def find_best_plan( state_zero.generate_next_timestep_states(first_timestep) for i in range(first_timestep_index, len(self.timesteps) - 1): + # print(f"Generating next timestep states for timestep: {i}") + # if i == 187: + # print("here") current_timestep = self.timesteps[i] next_timestep = self.timesteps[i + 1] final_states = current_timestep.get_final_states_within_fill_level_target() + # print(f"There are {len(final_states)} final states") for frbc_state in final_states: frbc_state.generate_next_timestep_states(next_timestep) end_state = self.find_best_end_state( diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py index 5777d8d..676afef 100644 --- a/flexmeasures_s2/profile_steering/root_planner.py +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -93,7 +93,7 @@ def plan( # Get proposals from each congestion point controller for cpc in self.cp_controllers: - # print("Improving") + print("Improving------------------------->") try: proposal = cpc.create_improved_planning( difference_profile, diff --git a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py index 7c2bef7..9555821 100644 --- a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py +++ b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py @@ -1,293 +1,297 @@ from typing import List -JouleProfileTarget: List = [0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 8000000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0]; +JouleProfileTarget: List = [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, +] + + def get_JouleProfileTarget() -> List: return JouleProfileTarget diff --git a/flexmeasures_s2/profile_steering/tests/profiling_10evs.txt b/flexmeasures_s2/profile_steering/tests/profiling_10evs.txt new file mode 100644 index 0000000..81c12da --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/profiling_10evs.txt @@ -0,0 +1,95 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +here +here +here +here +here +here +here +here +here +here +Current planning is within the congestion target range. Returning it. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 5.287368307500032e+16. +Root controller: selected best controller 'battery10' with global energy impr 5.287368307500032e+16, congestion impr 0.0, iteration 1. +Improving-------------------------> +CP '': Selected best controller 'battery9' with improvement of 4.405210942499994e+16. +Root controller: selected best controller 'battery9' with global energy impr 4.405210942499994e+16, congestion impr 0.0, iteration 2. +Improving-------------------------> +CP '': Selected best controller 'battery8' with improvement of 3.673598557500006e+16. +Root controller: selected best controller 'battery8' with global energy impr 3.673598557500006e+16, congestion impr 0.0, iteration 3. +Improving-------------------------> +CP '': Selected best controller 'battery7' with improvement of 2.9415809024999936e+16. +Root controller: selected best controller 'battery7' with global energy impr 2.9415809024999936e+16, congestion impr 0.0, iteration 4. +Improving-------------------------> +CP '': Selected best controller 'battery6' with improvement of 2.344441207499981e+16. +Root controller: selected best controller 'battery6' with global energy impr 2.344441207499981e+16, congestion impr 0.0, iteration 5. +Improving-------------------------> +CP '': Selected best controller 'battery5' with improvement of 1.9925078175000064e+16. +Root controller: selected best controller 'battery5' with global energy impr 1.9925078175000064e+16, congestion impr 0.0, iteration 6. +Improving-------------------------> +CP '': Selected best controller 'battery4' with improvement of 1.6354931625000448e+16. +Root controller: selected best controller 'battery4' with global energy impr 1.6354931625000448e+16, congestion impr 0.0, iteration 7. +Improving-------------------------> +CP '': Selected best controller 'battery3' with improvement of 1.2916190024999936e+16. +Root controller: selected best controller 'battery3' with global energy impr 1.2916190024999936e+16, congestion impr 0.0, iteration 8. +Improving-------------------------> +CP '': Selected best controller 'battery2' with improvement of 9499199624999936.0. +Root controller: selected best controller 'battery2' with global energy impr 9499199624999936.0, congestion impr 0.0, iteration 9. +Improving-------------------------> +CP '': Selected best controller 'battery1' with improvement of 5950983824999936.0. +Root controller: selected best controller 'battery1' with global energy impr 5950983824999936.0, congestion impr 0.0, iteration 10. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 176728499999744.0. +Root controller: selected best controller 'battery10' with global energy impr 176728499999744.0, congestion impr 0.0, iteration 11. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 0.0. +Root controller: selected best controller 'battery10' with global energy impr 0.0, congestion impr 0.0, iteration 12. +Optimizing priority class 1 was done after 12 iterations. +Plan generated in 816.82 seconds +Got cluster plan +Got device plan + + _ ._ __/__ _ _ _ _ _/_ Recorded: 09:22:09 Samples: 804852 + /_//_/// /_\ / //_// / //_'/ // Duration: 3318.116 CPU time: 819.221 +/ _/ v5.0.1 + +Program: test_frbc_device.py + +3318.113 test_frbc_device.py:1 +└─ 3316.660 test_planning_service_impl_with_ev_device test_frbc_device.py:582 + ├─ 2499.828 plot_planning_results test_frbc_device.py:458 + │ └─ 2499.460 show matplotlib/pyplot.py:569 + │ [2 frames hidden] matplotlib + │ 2499.459 Tk.mainloop tkinter/__init__.py:1456 + └─ 816.822 PlanningServiceImpl.plan ../planning_service_impl.py:181 + └─ 816.669 RootPlanner.plan ../root_planner.py:54 + ├─ 755.735 CongestionPointPlanner.create_improved_planning ../congestion_point_planner.py:144 + │ └─ 755.530 S2FrbcDevicePlanner.create_improved_planning ../device_planner/frbc/s2_frbc_device_planner.py:98 + │ └─ 755.442 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 + │ └─ 752.563 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 + │ └─ 742.274 try_create_next_state ../device_planner/frbc/frbc_state.py:357 + │ ├─ 587.781 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 + │ │ ├─ 155.578 [self] ../device_planner/frbc/frbc_state.py + │ │ ├─ 75.175 UUID.__init__ uuid.py:138 + │ │ ├─ 65.173 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 + │ │ │ └─ 41.267 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 + │ │ ├─ 62.648 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 + │ │ ├─ 50.049 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 + │ │ │ └─ 33.823 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 + │ │ ├─ 41.714 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 + │ │ └─ 36.547 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 + │ ├─ 73.140 UUID.__init__ uuid.py:138 + │ └─ 54.340 [self] ../device_planner/frbc/frbc_state.py + └─ 60.923 CongestionPointPlanner.create_initial_planning ../congestion_point_planner.py:51 + └─ 60.922 S2FrbcDevicePlanner.create_initial_planning ../device_planner/frbc/s2_frbc_device_planner.py:136 + └─ 60.922 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 + └─ 60.786 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 + └─ 60.172 try_create_next_state ../device_planner/frbc/frbc_state.py:357 + └─ 47.543 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 + +To view this report with different options, run: + pyinstrument --load-prev 2025-05-19T09-22-09 [options] + diff --git a/flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt b/flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt new file mode 100644 index 0000000..d269bac --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt @@ -0,0 +1,8244 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +Current planning is within the congestion target range. Returning it. +CP '': Selected best controller 'bat1' with improvement of 5914932975000000.0. +Root controller: selected best controller 'bat1' with global energy impr 5914932975000000.0, congestion impr 0.0, iteration 1. +CP '': Selected best controller 'bat1' with improvement of 0.0. +Root controller: selected best controller 'bat1' with global energy impr 0.0, congestion impr 0.0, iteration 2. +Optimizing priority class 1 was done after 2 iterations. +Plan generated in 1.67 seconds +Got cluster plan +Got device plan + + _ ._ __/__ _ _ _ _ _/_ Recorded: 16:11:14 Samples: 3233 + /_//_/// /_\ / //_// / //_'/ // Duration: 5.397 CPU time: 4.711 +/ _/ v5.0.1 + +Program: test_frbc_device.py + +5.394 test_frbc_device.py:1 +├─ 4.097 test_planning_service_impl_with_ev_device test_frbc_device.py:582 +│ ├─ 2.429 plot_planning_results test_frbc_device.py:526 +│ │ ├─ 2.082 show matplotlib/pyplot.py:569 +│ │ │ └─ 2.082 _BackendTkAgg.show matplotlib/backend_bases.py:3520 +│ │ │ └─ 2.082 FigureManagerTk.start_main_loop matplotlib/backends/_backend_tk.py:534 +│ │ │ └─ 2.082 Tk.mainloop tkinter/__init__.py:1456 +│ │ │ ├─ 1.799 [self] tkinter/__init__.py +│ │ │ └─ 0.283 CallWrapper.__call__ tkinter/__init__.py:1916 +│ │ │ ├─ 0.272 callit tkinter/__init__.py:837 +│ │ │ │ ├─ 0.261 idle_draw matplotlib/backends/_backend_tk.py:272 +│ │ │ │ │ └─ 0.261 FigureCanvasTkAgg.draw matplotlib/backends/backend_tkagg.py:9 +│ │ │ │ │ ├─ 0.236 FigureCanvasTkAgg.draw matplotlib/backends/backend_agg.py:375 +│ │ │ │ │ │ ├─ 0.214 draw_wrapper matplotlib/artist.py:92 +│ │ │ │ │ │ │ └─ 0.214 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ └─ 0.214 Figure.draw matplotlib/figure.py:3237 +│ │ │ │ │ │ │ ├─ 0.209 _draw_list_compositing_images matplotlib/image.py:116 +│ │ │ │ │ │ │ │ └─ 0.209 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ └─ 0.209 Axes.draw matplotlib/axes/_base.py:3116 +│ │ │ │ │ │ │ │ ├─ 0.179 _draw_list_compositing_images matplotlib/image.py:116 +│ │ │ │ │ │ │ │ │ └─ 0.179 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ ├─ 0.164 XAxis.draw matplotlib/axis.py:1407 +│ │ │ │ │ │ │ │ │ │ ├─ 0.088 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.086 XTick.draw matplotlib/axis.py:268 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.034 RendererAgg.draw_text matplotlib/backends/backend_agg.py:185 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.031 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__hash__ matplotlib/font_manager.py:700 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Affine2D.rotate_deg matplotlib/transforms.py:1995 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Affine2D.rotate matplotlib/transforms.py:1972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 cos +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.invalidate matplotlib/transforms.py:155 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/text.py:433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text._cm_set matplotlib/artist.py:1243 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 normalize_kwargs matplotlib/cbook.py:1742 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._cm_set matplotlib/artist.py:1243 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _setattr_cm matplotlib/cbook.py:2010 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text._set_gc_clip matplotlib/artist.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GraphicsContextBase.set_clip_path matplotlib/backend_bases.py:848 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GraphicsContextBase.set_foreground matplotlib/backend_bases.py:883 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_nth_color matplotlib/colors.py:218 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.__init__ matplotlib/transforms.py:1886 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.copy +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 Line2D.draw matplotlib/lines.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TransformedBbox.__array__ matplotlib/transforms.py:236 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 Line2D.recache matplotlib/lines.py:672 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 broadcast_arrays numpy/lib/stride_tricks.py:480 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _broadcast_shape numpy/lib/stride_tricks.py:416 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/stride_tricks.py:546 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _broadcast_to numpy/lib/stride_tricks.py:340 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/stride_tricks.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/stride_tricks.py:538 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Path.__init__ matplotlib/path.py:99 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Path._update_values matplotlib/path.py:202 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/path.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 column_stack numpy/lib/shape_base.py:612 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 array +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 RendererAgg.new_gc matplotlib/backend_bases.py:604 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 GraphicsContextBase.__init__ matplotlib/backend_bases.py:680 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] matplotlib/backend_bases.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _is_nth_color matplotlib/colors.py:218 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/colors.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CapStyle.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Line2D._get_transformed_path matplotlib/lines.py:732 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Line2D._transform_path matplotlib/lines.py:717 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 TransformedPath.__init__ matplotlib/transforms.py:2751 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 TransformedPath.set_children matplotlib/transforms.py:179 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.items +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 TransformedPath.get_transformed_points_and_affine matplotlib/transforms.py:2779 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 TransformedPath._revalidate matplotlib/transforms.py:2766 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Path._fast_from_codes_and_verts matplotlib/path.py:162 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_unmasked_float_array matplotlib/cbook.py:1337 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asarray +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.transform_path_non_affine matplotlib/transforms.py:1612 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D._set_gc_clip matplotlib/artist.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GraphicsContextBase.set_clip_path matplotlib/backend_bases.py:848 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Affine2D.frozen matplotlib/transforms.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.__init__ matplotlib/transforms.py:1886 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.copy +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D._get_markerfacecolor matplotlib/lines.py:968 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GraphicsContextBase.set_url matplotlib/backend_bases.py:918 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedPath.get_transformed_path_and_affine matplotlib/transforms.py:2790 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedPath._revalidate matplotlib/transforms.py:2766 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Path._fast_from_codes_and_verts matplotlib/path.py:162 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_unmasked_float_array matplotlib/cbook.py:1337 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 RendererAgg.draw_text matplotlib/backends/backend_agg.py:185 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 round +│ │ │ │ │ │ │ │ │ │ ├─ 0.030 XAxis._update_label_position matplotlib/axis.py:2449 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 XAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/dates.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 datetime64.tolist +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.astimezone +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.strftime +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _interval_contains_close matplotlib/transforms.py:2917 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MinuteLocator._create_rrule matplotlib/dates.py:1161 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper.set matplotlib/dates.py:963 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._update_rrule matplotlib/dates.py:969 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__iter__ dateutil/rrule.py:105 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.viewlim_to_dt matplotlib/dates.py:1099 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.replace +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 array +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PyCapsule.affine_transform +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _amax numpy/core/_methods.py:39 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Bbox.translated matplotlib/transforms.py:616 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 helper contextlib.py:279 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text.get_transform matplotlib/artist.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 round numpy/core/fromnumeric.py:3269 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 float64.round +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GettzFunc.__call__ dateutil/tz/tz.py:1552 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 asanyarray +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] dateutil/rrule.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 rrule.__mod_distance dateutil/rrule.py:1079 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 divmod +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/transforms.py:646 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Bbox.xmin matplotlib/transforms.py:299 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min numpy/core/fromnumeric.py:2836 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ │ │ │ │ ├─ 0.027 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 get_font matplotlib/font_manager.py:1586 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/font_manager.py:1610 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/font_manager.py:1349 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 from_bounds matplotlib/transforms.py:795 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_extents matplotlib/transforms.py:804 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.__init__ matplotlib/transforms.py:749 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.copy +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Affine2D.__init__ matplotlib/transforms.py:1886 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.get_figure matplotlib/artist.py:723 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Figure.get_figure matplotlib/figure.py:232 +│ │ │ │ │ │ │ │ │ │ ├─ 0.013 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 date2num matplotlib/dates.py:405 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/dates.py:447 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.replace +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.viewlim_to_dt matplotlib/dates.py:1099 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:2453 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isclose numpy/core/numeric.py:2249 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 within_tol numpy/core/numeric.py:2330 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/dates.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 round numpy/core/fromnumeric.py:3269 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 float64.round +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/lib/function_base.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.strftime +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 date2num matplotlib/dates.py:405 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.viewlim_to_dt matplotlib/dates.py:1099 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GettzFunc.__call__ dateutil/tz/tz.py:1552 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _interval_contains_close matplotlib/transforms.py:2917 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_xdata matplotlib/lines.py:1276 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 iterable numpy/lib/function_base.py:348 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YTick.update_position matplotlib/axis.py:467 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YTick.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YTick._stale_axes_callback matplotlib/artist.py:102 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes._stale_figure_callback matplotlib/figure.py:65 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Figure.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _auto_draw_if_interactive matplotlib/pyplot.py:1074 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_interactive matplotlib/__init__.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/figure.py +│ │ │ │ │ │ │ │ │ │ └─ 0.002 XAxis._update_offset_text_position matplotlib/axis.py:2475 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/transforms.py:647 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.xmax matplotlib/transforms.py:309 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:648 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.ymin matplotlib/transforms.py:304 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _min_dispatcher numpy/core/fromnumeric.py:2831 +│ │ │ │ │ │ │ │ │ ├─ 0.011 Legend.draw matplotlib/legend.py:734 +│ │ │ │ │ │ │ │ │ │ ├─ 0.008 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.008 VPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 HPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 VPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 HPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DrawingArea.draw matplotlib/offsetbox.py:651 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.draw matplotlib/lines.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.draw matplotlib/offsetbox.py:785 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._cm_set matplotlib/artist.py:1243 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 helper contextlib.py:279 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:484 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.intervaly matplotlib/transforms.py:338 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 VPacker.get_offset matplotlib/offsetbox.py:54 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker.get_offset matplotlib/offsetbox.py:291 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend._findoffset matplotlib/legend.py:717 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend._find_best_position matplotlib/legend.py:1147 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/legend.py:1165 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Bbox.count_contains matplotlib/transforms.py:560 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ +│ │ │ │ │ │ │ │ │ │ └─ 0.003 VPacker.get_window_extent matplotlib/offsetbox.py:363 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:54 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:291 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._findoffset matplotlib/legend.py:717 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._find_best_position matplotlib/legend.py:1147 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._get_anchored_bbox matplotlib/legend.py:1128 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_anchored_bbox matplotlib/offsetbox.py:1054 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.anchored matplotlib/transforms.py:479 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.bounds matplotlib/transforms.py:365 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Rectangle.draw matplotlib/patches.py:633 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Rectangle._draw_paths_with_artist_properties matplotlib/patches.py:583 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_text matplotlib/backends/backend_agg.py:185 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D.draw matplotlib/lines.py:744 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.__array__ matplotlib/transforms.py:236 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine.draw matplotlib/spines.py:293 +│ │ │ │ │ │ │ │ │ └─ 0.001 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine.draw matplotlib/patches.py:633 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine._draw_paths_with_artist_properties matplotlib/patches.py:583 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine._set_gc_clip matplotlib/artist.py:935 +│ │ │ │ │ │ │ │ │ └─ 0.001 GraphicsContextBase.set_clip_path matplotlib/backend_bases.py:848 +│ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.001 dict.items +│ │ │ │ │ │ │ │ ├─ 0.029 Axes._update_title_position matplotlib/axes/_base.py:3044 +│ │ │ │ │ │ │ │ │ ├─ 0.026 YAxis.get_tightbbox matplotlib/axis.py:1348 +│ │ │ │ │ │ │ │ │ │ ├─ 0.013 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 YAxis.get_tick_space matplotlib/axis.py:2821 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 BboxTransformTo.__sub__ matplotlib/transforms.py:1418 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 Affine2D.inverted matplotlib/transforms.py:1869 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 inv numpy/linalg/linalg.py:492 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 [self] numpy/linalg/linalg.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick.update_position matplotlib/axis.py:467 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_ydata matplotlib/lines.py:1295 +│ │ │ │ │ │ │ │ │ │ ├─ 0.010 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ScaledTranslation.get_matrix matplotlib/transforms.py:2676 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 nonsingular matplotlib/transforms.py:2837 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 finfo.__new__ numpy/core/getlimits.py:484 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_tick_space matplotlib/axis.py:2821 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 unit matplotlib/transforms.py:785 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 scale_range matplotlib/ticker.py:1982 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick.update_position matplotlib/axis.py:467 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick._stale_axes_callback matplotlib/artist.py:102 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:649 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.ymax matplotlib/transforms.py:314 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _max_dispatcher numpy/core/fromnumeric.py:2687 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/axis.py:1373 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.get_figure matplotlib/artist.py:723 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _amax numpy/core/_methods.py:39 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_tightbbox matplotlib/artist.py:348 +│ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ └─ 0.002 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ └─ 0.002 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.002 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ └─ 0.002 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ └─ 0.001 Axes._unstale_viewLim matplotlib/axes/_base.py:851 +│ │ │ │ │ │ │ │ └─ 0.001 matplotlib/axes/_base.py:854 +│ │ │ │ │ │ │ │ └─ 0.001 Grouper.get_siblings matplotlib/cbook.py:871 +│ │ │ │ │ │ │ │ └─ 0.001 WeakKeyDictionary.get weakref.py:452 +│ │ │ │ │ │ │ └─ 0.004 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ └─ 0.004 Rectangle.draw matplotlib/patches.py:633 +│ │ │ │ │ │ │ └─ 0.004 Rectangle._draw_paths_with_artist_properties matplotlib/patches.py:583 +│ │ │ │ │ │ │ └─ 0.004 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ ├─ 0.018 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ └─ 0.018 NavigationToolbar2Tk._wait_cursor_for_draw_cm matplotlib/backend_bases.py:2907 +│ │ │ │ │ │ │ └─ 0.018 FigureCanvasTkAgg.set_cursor matplotlib/backends/_backend_tk.py:456 +│ │ │ │ │ │ │ └─ 0.018 Canvas.configure tkinter/__init__.py:1668 +│ │ │ │ │ │ │ └─ 0.018 Canvas._configure tkinter/__init__.py:1655 +│ │ │ │ │ │ │ └─ 0.018 tkapp.call +│ │ │ │ │ │ └─ 0.005 FigureCanvasTkAgg.get_renderer matplotlib/backends/backend_agg.py:387 +│ │ │ │ │ │ └─ 0.005 RendererAgg.__init__ matplotlib/backends/backend_agg.py:63 +│ │ │ │ │ └─ 0.025 FigureCanvasTkAgg.blit matplotlib/backends/backend_tkagg.py:13 +│ │ │ │ │ └─ 0.025 blit matplotlib/backends/_backend_tk.py:70 +│ │ │ │ │ ├─ 0.024 _blit matplotlib/backends/_backend_tk.py:56 +│ │ │ │ │ │ └─ 0.024 PyCapsule.blit +│ │ │ │ │ └─ 0.001 [self] matplotlib/backends/_backend_tk.py +│ │ │ │ └─ 0.011 delayed_destroy matplotlib/backends/_backend_tk.py:597 +│ │ │ │ └─ 0.011 Tk.destroy tkinter/__init__.py:2337 +│ │ │ │ ├─ 0.006 NavigationToolbar2Tk.destroy tkinter/__init__.py:2606 +│ │ │ │ │ ├─ 0.005 Frame.destroy tkinter/__init__.py:2606 +│ │ │ │ │ │ └─ 0.005 tkapp.call +│ │ │ │ │ └─ 0.001 tkapp.call +│ │ │ │ └─ 0.005 tkapp.call +│ │ │ ├─ 0.009 FigureCanvasTkAgg.resize matplotlib/backends/_backend_tk.py:251 +│ │ │ │ ├─ 0.008 PhotoImage.configure tkinter/__init__.py:4067 +│ │ │ │ │ └─ 0.008 tkapp.call +│ │ │ │ └─ 0.001 ResizeEvent.__init__ matplotlib/backend_bases.py:1235 +│ │ │ │ └─ 0.001 bool.get_width_height matplotlib/backend_bases.py:1944 +│ │ │ │ └─ 0.001 TransformedBbox.max matplotlib/transforms.py:324 +│ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ └─ 0.001 min +│ │ │ └─ 0.003 FigureCanvasTkAgg.motion_notify_event matplotlib/backends/_backend_tk.py:296 +│ │ │ ├─ 0.002 MouseEvent._process matplotlib/backend_bases.py:1187 +│ │ │ │ └─ 0.002 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ │ └─ 0.002 NavigationToolbar2Tk.mouse_move matplotlib/backend_bases.py:2951 +│ │ │ │ ├─ 0.001 NavigationToolbar2Tk.set_message matplotlib/backends/_backend_tk.py:721 +│ │ │ │ │ └─ 0.001 StringVar.set tkinter/__init__.py:400 +│ │ │ │ └─ 0.001 _mouse_event_to_message matplotlib/backend_bases.py:2929 +│ │ │ │ └─ 0.001 Axes.format_coord matplotlib/axes/_base.py:4054 +│ │ │ │ └─ 0.001 Axes.format_ydata matplotlib/axes/_base.py:4044 +│ │ │ │ └─ 0.001 matplotlib/transforms.py:195 +│ │ │ └─ 0.001 MouseEvent.__init__ matplotlib/backend_bases.py:1384 +│ │ │ └─ 0.001 MouseEvent.__init__ matplotlib/backend_bases.py:1266 +│ │ │ └─ 0.001 FigureCanvasTkAgg.inaxes matplotlib/backend_bases.py:1803 +│ │ │ └─ 0.001 matplotlib/backend_bases.py:1818 +│ │ │ └─ 0.001 Rectangle.contains_point matplotlib/patches.py:179 +│ │ │ └─ 0.001 Path.contains_point matplotlib/path.py:502 +│ │ │ └─ 0.001 CompositeGenericTransform.frozen matplotlib/transforms.py:2361 +│ │ │ └─ 0.001 CompositeGenericTransform.frozen matplotlib/transforms.py:2361 +│ │ │ └─ 0.001 composite_transform_factory matplotlib/transforms.py:2498 +│ │ │ └─ 0.001 CompositeAffine2D.__init__ matplotlib/transforms.py:2452 +│ │ │ └─ 0.001 CompositeAffine2D.__init__ matplotlib/transforms.py:1769 +│ │ ├─ 0.209 subplots matplotlib/pyplot.py:1620 +│ │ │ ├─ 0.196 figure matplotlib/pyplot.py:872 +│ │ │ │ └─ 0.196 new_figure_manager matplotlib/pyplot.py:549 +│ │ │ │ ├─ 0.186 _BackendTkAgg.new_figure_manager matplotlib/backend_bases.py:3494 +│ │ │ │ │ ├─ 0.185 _BackendTkAgg.new_figure_manager_given_figure matplotlib/backend_bases.py:3503 +│ │ │ │ │ │ └─ 0.185 FigureCanvasTkAgg.new_manager matplotlib/backend_bases.py:1772 +│ │ │ │ │ │ └─ 0.185 FigureManagerTk.create_with_canvas matplotlib/backends/_backend_tk.py:500 +│ │ │ │ │ │ ├─ 0.132 Tk.__init__ tkinter/__init__.py:2279 +│ │ │ │ │ │ │ └─ 0.132 create +│ │ │ │ │ │ ├─ 0.042 FigureManagerTk.__init__ matplotlib/backends/_backend_tk.py:479 +│ │ │ │ │ │ │ └─ 0.042 FigureManagerTk.__init__ matplotlib/backend_bases.py:2609 +│ │ │ │ │ │ │ └─ 0.042 NavigationToolbar2Tk.__init__ matplotlib/backends/_backend_tk.py:622 +│ │ │ │ │ │ │ ├─ 0.040 NavigationToolbar2Tk._Button matplotlib/backends/_backend_tk.py:827 +│ │ │ │ │ │ │ │ ├─ 0.031 Button.__init__ tkinter/__init__.py:2660 +│ │ │ │ │ │ │ │ │ └─ 0.031 Button.__init__ tkinter/__init__.py:2589 +│ │ │ │ │ │ │ │ │ └─ 0.031 tkapp.call +│ │ │ │ │ │ │ │ └─ 0.009 NavigationToolbar2Tk._set_image_for_button matplotlib/backends/_backend_tk.py:748 +│ │ │ │ │ │ │ │ ├─ 0.003 PngImageFile.convert PIL/Image.py:929 +│ │ │ │ │ │ │ │ │ ├─ 0.002 PngImageFile.load PIL/ImageFile.py:186 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 ImagingDecoder.decode +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile.load_prepare PIL/PngImagePlugin.py:971 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile.load_prepare PIL/ImageFile.py:323 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 new +│ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile.copy PIL/Image.py:1265 +│ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile._new PIL/Image.py:587 +│ │ │ │ │ │ │ │ ├─ 0.002 Button.configure tkinter/__init__.py:1668 +│ │ │ │ │ │ │ │ │ └─ 0.002 Button._configure tkinter/__init__.py:1655 +│ │ │ │ │ │ │ │ │ └─ 0.002 tkapp.call +│ │ │ │ │ │ │ │ ├─ 0.001 PhotoImage.__init__ PIL/ImageTk.py:92 +│ │ │ │ │ │ │ │ │ └─ 0.001 PhotoImage.__init__ tkinter/__init__.py:4098 +│ │ │ │ │ │ │ │ │ └─ 0.001 PhotoImage.__init__ tkinter/__init__.py:4033 +│ │ │ │ │ │ │ │ ├─ 0.001 _recolor_icon matplotlib/backends/_backend_tk.py:774 +│ │ │ │ │ │ │ │ ├─ 0.001 PosixPath.exists pathlib.py:1285 +│ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.stat pathlib.py:1092 +│ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.__fspath__ pathlib.py:631 +│ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.__str__ pathlib.py:621 +│ │ │ │ │ │ │ │ └─ 0.001 Image.resize PIL/Image.py:2250 +│ │ │ │ │ │ │ │ └─ 0.001 Image.convert PIL/Image.py:929 +│ │ │ │ │ │ │ │ └─ 0.001 ImagingCore.convert +│ │ │ │ │ │ │ └─ 0.003 Label.__init__ tkinter/__init__.py:3169 +│ │ │ │ │ │ │ └─ 0.003 Label.__init__ tkinter/__init__.py:2589 +│ │ │ │ │ │ │ ├─ 0.002 tkapp.call +│ │ │ │ │ │ │ └─ 0.001 Label._options tkinter/__init__.py:1497 +│ │ │ │ │ │ │ └─ 0.001 callable +│ │ │ │ │ │ ├─ 0.008 FigureCanvasTkAgg.__init__ matplotlib/backends/_backend_tk.py:166 +│ │ │ │ │ │ │ ├─ 0.005 Canvas.create_image tkinter/__init__.py:2817 +│ │ │ │ │ │ │ │ └─ 0.005 Canvas._create tkinter/__init__.py:2797 +│ │ │ │ │ │ │ │ └─ 0.005 tkapp.call +│ │ │ │ │ │ │ ├─ 0.002 PhotoImage.__init__ tkinter/__init__.py:4098 +│ │ │ │ │ │ │ │ └─ 0.002 PhotoImage.__init__ tkinter/__init__.py:4033 +│ │ │ │ │ │ │ │ └─ 0.002 tkapp.call +│ │ │ │ │ │ │ └─ 0.001 bool.get_width_height matplotlib/backend_bases.py:1944 +│ │ │ │ │ │ │ └─ 0.001 TransformedBbox.max matplotlib/transforms.py:324 +│ │ │ │ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ └─ 0.001 NumpyVersion.__init__ numpy/lib/_version.py:55 +│ │ │ │ │ │ │ └─ 0.001 match re.py:187 +│ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ └─ 0.003 PhotoImage.__init__ PIL/ImageTk.py:92 +│ │ │ │ │ │ └─ 0.003 _get_image_from_kw PIL/ImageTk.py:42 +│ │ │ │ │ │ └─ 0.003 open PIL/Image.py:3409 +│ │ │ │ │ │ ├─ 0.002 preinit PIL/Image.py:344 +│ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 PIL/GifImagePlugin.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ └─ 0.001 _open_core PIL/Image.py:3482 +│ │ │ │ │ │ └─ 0.001 PngImageFile.__init__ PIL/ImageFile.py:113 +│ │ │ │ │ └─ 0.001 Figure.__init__ matplotlib/figure.py:2464 +│ │ │ │ │ └─ 0.001 Rectangle.__init__ matplotlib/patches.py:748 +│ │ │ │ │ └─ 0.001 Rectangle.__init__ matplotlib/patches.py:48 +│ │ │ │ │ └─ 0.001 Rectangle.set_hatch matplotlib/patches.py:541 +│ │ │ │ └─ 0.010 _warn_if_gui_out_of_main_thread matplotlib/pyplot.py:526 +│ │ │ │ └─ 0.010 _get_backend_mod matplotlib/pyplot.py:359 +│ │ │ │ └─ 0.010 switch_backend matplotlib/pyplot.py:373 +│ │ │ │ ├─ 0.008 switch_backend matplotlib/pyplot.py:373 +│ │ │ │ │ └─ 0.008 BackendRegistry.load_backend_module matplotlib/backends/registry.py:302 +│ │ │ │ │ └─ 0.008 import_module importlib/__init__.py:108 +│ │ │ │ │ └─ 0.008 _gcd_import :1038 +│ │ │ │ │ └─ 0.008 _find_and_load :1022 +│ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.008 _load_unlocked :664 +│ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ ├─ 0.006 matplotlib/backends/backend_tkagg.py:1 +│ │ │ │ │ │ └─ 0.006 _handle_fromlist :1053 +│ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.006 matplotlib/backends/_backend_tk.py:1 +│ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.003 tkinter/__init__.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 create_dynamic +│ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ └─ 0.001 tkinter/filedialog.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ └─ 0.001 getcwd +│ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ ├─ 0.001 matplotlib/backends/backend_gtk4agg.py:1 +│ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ └─ 0.001 matplotlib/backends/backend_qtagg.py:1 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.001 matplotlib/backends/qt_compat.py:1 +│ │ │ │ │ └─ 0.001 _setup_pyqt5plus matplotlib/backends/qt_compat.py:66 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ └─ 0.001 :128 +│ │ │ │ └─ 0.002 _get_running_interactive_framework matplotlib/cbook.py:58 +│ │ │ │ └─ 0.002 PyCapsule.display_is_valid +│ │ │ └─ 0.013 Figure.subplots matplotlib/figure.py:785 +│ │ │ └─ 0.013 GridSpec.subplots matplotlib/gridspec.py:249 +│ │ │ └─ 0.013 Figure.add_subplot matplotlib/figure.py:644 +│ │ │ └─ 0.013 Axes.__init__ matplotlib/axes/_base.py:579 +│ │ │ ├─ 0.011 Axes.clear matplotlib/axes/_base.py:1409 +│ │ │ │ └─ 0.011 Axes.__clear matplotlib/axes/_base.py:1277 +│ │ │ │ ├─ 0.007 XAxis.clear matplotlib/axis.py:856 +│ │ │ │ │ ├─ 0.005 XAxis._set_scale matplotlib/axis.py:761 +│ │ │ │ │ │ └─ 0.005 LinearScale.set_default_locators_and_formatters matplotlib/scale.py:103 +│ │ │ │ │ │ └─ 0.005 ScalarFormatter.__init__ matplotlib/ticker.py:452 +│ │ │ │ │ │ └─ 0.005 ScalarFormatter.set_useMathText matplotlib/ticker.py:573 +│ │ │ │ │ │ └─ 0.005 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ └─ 0.005 FontManager._findfont_cached matplotlib/font_manager.py:1453 +│ │ │ │ │ │ ├─ 0.002 [self] matplotlib/font_manager.py +│ │ │ │ │ │ ├─ 0.001 FontManager.score_stretch matplotlib/font_manager.py:1233 +│ │ │ │ │ │ ├─ 0.001 FontManager.score_family matplotlib/font_manager.py:1175 +│ │ │ │ │ │ │ └─ 0.001 _expand_aliases matplotlib/font_manager.py:1167 +│ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ └─ 0.001 FontManager.score_weight matplotlib/font_manager.py:1251 +│ │ │ │ │ └─ 0.002 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ │ ├─ 0.001 Text.set_fontproperties matplotlib/text.py:1316 +│ │ │ │ │ │ └─ 0.001 FontProperties._from_any matplotlib/font_manager.py:677 +│ │ │ │ │ │ └─ 0.001 FontProperties.wrapper matplotlib/font_manager.py:556 +│ │ │ │ │ │ └─ 0.001 FontProperties.__init__ matplotlib/font_manager.py:656 +│ │ │ │ │ │ └─ 0.001 FontProperties.set_size matplotlib/font_manager.py:876 +│ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ └─ 0.001 Text.set_linespacing matplotlib/text.py:1040 +│ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ └─ 0.001 Real.__instancecheck__ abc.py:117 +│ │ │ │ ├─ 0.002 Axes.grid matplotlib/axes/_base.py:3273 +│ │ │ │ │ └─ 0.002 XAxis.grid matplotlib/axis.py:1707 +│ │ │ │ │ ├─ 0.001 XAxis.set_tick_params matplotlib/axis.py:957 +│ │ │ │ │ │ └─ 0.001 _LazyTickList.__get__ matplotlib/axis.py:534 +│ │ │ │ │ │ └─ 0.001 XAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ │ │ └─ 0.001 XTick.__init__ matplotlib/axis.py:367 +│ │ │ │ │ │ └─ 0.001 Axes.get_xaxis_transform matplotlib/axes/_base.py:928 +│ │ │ │ │ │ └─ 0.001 Spine.get_spine_transform matplotlib/spines.py:340 +│ │ │ │ │ │ └─ 0.001 Spine._ensure_position_is_set matplotlib/spines.py:203 +│ │ │ │ │ │ └─ 0.001 Spine.set_position matplotlib/spines.py:300 +│ │ │ │ │ └─ 0.001 [self] matplotlib/axis.py +│ │ │ │ └─ 0.002 YAxis.set_clip_path matplotlib/axis.py:1126 +│ │ │ │ ├─ 0.001 YTick.set_clip_path matplotlib/axis.py:234 +│ │ │ │ │ └─ 0.001 YTick.set_clip_path matplotlib/artist.py:784 +│ │ │ │ │ └─ 0.001 TransformedBbox.__init__ matplotlib/transforms.py:1087 +│ │ │ │ └─ 0.001 _LazyTickList.__get__ matplotlib/axis.py:534 +│ │ │ │ └─ 0.001 XAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ └─ 0.001 XTick.__init__ matplotlib/axis.py:367 +│ │ │ │ └─ 0.001 Text. matplotlib/artist.py:146 +│ │ │ │ └─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ └─ 0.001 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ └─ 0.001 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ └─ 0.001 getattr +│ │ │ ├─ 0.001 Axes._init_axis matplotlib/axes/_base.py:828 +│ │ │ │ └─ 0.001 XAxis.__init__ matplotlib/axis.py:2385 +│ │ │ │ └─ 0.001 XAxis.__init__ matplotlib/axis.py:612 +│ │ │ │ └─ 0.001 Text.__init__ matplotlib/text.py:104 +│ │ │ │ └─ 0.001 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ └─ 0.001 Text.set_fontproperties matplotlib/text.py:1316 +│ │ │ │ └─ 0.001 FontProperties._from_any matplotlib/font_manager.py:677 +│ │ │ │ └─ 0.001 FontProperties.wrapper matplotlib/font_manager.py:556 +│ │ │ │ └─ 0.001 FontProperties.__init__ matplotlib/font_manager.py:656 +│ │ │ │ └─ 0.001 FontProperties.set_weight matplotlib/font_manager.py:824 +│ │ │ └─ 0.001 Axes.set_subplotspec matplotlib/axes/_base.py:803 +│ │ │ └─ 0.001 Axes._set_position matplotlib/axes/_base.py:1149 +│ │ │ └─ 0.001 Bbox.set matplotlib/transforms.py:1057 +│ │ │ └─ 0.001 any numpy/core/fromnumeric.py:2322 +│ │ ├─ 0.077 tight_layout matplotlib/pyplot.py:2827 +│ │ │ └─ 0.077 Figure.tight_layout matplotlib/figure.py:3608 +│ │ │ └─ 0.077 TightLayoutEngine.execute matplotlib/layout_engine.py:163 +│ │ │ ├─ 0.075 get_tight_layout_figure matplotlib/_tight_layout.py:194 +│ │ │ │ └─ 0.075 _auto_adjust_subplotpars matplotlib/_tight_layout.py:20 +│ │ │ │ ├─ 0.074 _get_tightbbox_for_layout_only matplotlib/artist.py:1395 +│ │ │ │ │ └─ 0.074 Axes.get_tightbbox matplotlib/axes/_base.py:4463 +│ │ │ │ │ ├─ 0.050 _get_tightbbox_for_layout_only matplotlib/artist.py:1395 +│ │ │ │ │ │ └─ 0.050 XAxis.get_tightbbox matplotlib/axis.py:1348 +│ │ │ │ │ │ ├─ 0.023 XAxis._update_label_position matplotlib/axis.py:2449 +│ │ │ │ │ │ │ ├─ 0.017 XAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ ├─ 0.012 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ └─ 0.012 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ └─ 0.012 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ ├─ 0.010 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ ├─ 0.007 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__hash__ matplotlib/font_manager.py:700 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.get_weight matplotlib/font_manager.py:745 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_font matplotlib/font_manager.py:1586 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__reduce_ex__ +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ └─ 0.001 array +│ │ │ │ │ │ │ │ │ └─ 0.002 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ └─ 0.002 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ └─ 0.002 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.get_affine matplotlib/transforms.py:2248 +│ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ └─ 0.001 BboxTransformFrom.get_matrix matplotlib/transforms.py:2644 +│ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.bounds matplotlib/transforms.py:365 +│ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ │ └─ 0.005 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ ├─ 0.002 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ └─ 0.002 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ └─ 0.002 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ ├─ 0.001 _get_tzinfo matplotlib/dates.py:208 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ └─ 0.001 datetime.astimezone +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__mod_distance dateutil/rrule.py:1079 +│ │ │ │ │ │ │ │ └─ 0.001 XTick.get_loc matplotlib/axis.py:264 +│ │ │ │ │ │ │ ├─ 0.005 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ └─ 0.005 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ ├─ 0.002 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ └─ 0.002 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ └─ 0.002 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ └─ 0.002 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ └─ 0.002 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ └─ 0.002 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ ├─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:2453 +│ │ │ │ │ │ │ │ │ └─ 0.001 asanyarray +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator._create_rrule matplotlib/dates.py:1161 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper.set matplotlib/dates.py:963 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._update_rrule matplotlib/dates.py:969 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__init__ dateutil/rrule.py:428 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__construct_byset dateutil/rrule.py:1032 +│ │ │ │ │ │ │ │ └─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ │ └─ 0.001 XTick.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ └─ 0.001 XTick._stale_axes_callback matplotlib/artist.py:102 +│ │ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:649 +│ │ │ │ │ │ │ └─ 0.001 Bbox.ymax matplotlib/transforms.py:314 +│ │ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ ├─ 0.015 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ ├─ 0.010 YAxis.get_major_ticks matplotlib/axis.py:1655 +│ │ │ │ │ │ │ │ ├─ 0.007 YAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ │ │ │ │ │ └─ 0.007 YTick.__init__ matplotlib/axis.py:428 +│ │ │ │ │ │ │ │ │ ├─ 0.006 YTick.__init__ matplotlib/axis.py:59 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 Line2D.get_path matplotlib/lines.py:1035 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Line2D.recache matplotlib/lines.py:672 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Path.__init__ matplotlib/path.py:99 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/path.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_shape matplotlib/_api/__init__.py:133 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 Text.__init__ matplotlib/text.py:104 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text.set_fontproperties matplotlib/text.py:1316 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties._from_any matplotlib/font_manager.py:677 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.wrapper matplotlib/font_manager.py:556 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__init__ matplotlib/font_manager.py:656 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.set_family matplotlib/font_manager.py:784 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ └─ 0.002 Line2D.__init__ matplotlib/lines.py:287 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_linewidth matplotlib/lines.py:1129 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _scale_dashes matplotlib/lines.py:75 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_dash_capstyle matplotlib/lines.py:1409 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CapStyle.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CapStyle.__new__ enum.py:678 +│ │ │ │ │ │ │ │ │ └─ 0.001 YTick._get_text2_transform matplotlib/axis.py:453 +│ │ │ │ │ │ │ │ │ └─ 0.001 Axes.get_yaxis_text2_transform matplotlib/axes/_base.py:1065 +│ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.__add__ matplotlib/transforms.py:1340 +│ │ │ │ │ │ │ │ │ └─ 0.001 composite_transform_factory matplotlib/transforms.py:2498 +│ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.__init__ matplotlib/transforms.py:2341 +│ │ │ │ │ │ │ │ └─ 0.003 YAxis._copy_tick_props matplotlib/axis.py:1617 +│ │ │ │ │ │ │ │ └─ 0.003 Line2D.update_from matplotlib/lines.py:1338 +│ │ │ │ │ │ │ │ └─ 0.003 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ │ │ │ │ │ ├─ 0.002 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ │ │ │ │ │ │ └─ 0.002 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ └─ 0.002 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ │ └─ 0.002 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/markers.py +│ │ │ │ │ │ │ ├─ 0.002 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ ├─ 0.001 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_tick_space matplotlib/axis.py:2821 +│ │ │ │ │ │ │ │ │ └─ 0.001 BboxTransformTo.__sub__ matplotlib/transforms.py:1418 +│ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.inverted matplotlib/transforms.py:1869 +│ │ │ │ │ │ │ │ │ └─ 0.001 inv numpy/linalg/linalg.py:492 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ └─ 0.001 matplotlib/dates.py:1041 +│ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._attach_tzinfo matplotlib/dates.py:1000 +│ │ │ │ │ │ │ │ └─ 0.001 datetime.replace +│ │ │ │ │ │ │ ├─ 0.001 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ └─ 0.001 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ └─ 0.001 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.mtimeset dateutil/rrule.py:1294 +│ │ │ │ │ │ │ └─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ └─ 0.001 Line2D.set_xdata matplotlib/lines.py:1276 +│ │ │ │ │ │ │ └─ 0.001 iterable numpy/lib/function_base.py:348 +│ │ │ │ │ │ ├─ 0.006 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ └─ 0.006 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ └─ 0.006 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ ├─ 0.004 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ ├─ 0.002 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ ├─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__hash__ matplotlib/font_manager.py:700 +│ │ │ │ │ │ │ │ ├─ 0.001 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ ├─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ └─ 0.001 ScaledTranslation.get_matrix matplotlib/transforms.py:2676 +│ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ ├─ 0.004 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ ├─ 0.003 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ ├─ 0.002 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ ├─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.get_affine matplotlib/transforms.py:2248 +│ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__newobj__ copyreg.py:100 +│ │ │ │ │ │ │ │ └─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.set_locs matplotlib/ticker.py:735 +│ │ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:647 +│ │ │ │ │ │ │ └─ 0.001 Bbox.xmax matplotlib/transforms.py:309 +│ │ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ ├─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ └─ 0.001 from_bounds matplotlib/transforms.py:795 +│ │ │ │ │ │ │ └─ 0.001 from_extents matplotlib/transforms.py:804 +│ │ │ │ │ │ │ └─ 0.001 reshape numpy/core/fromnumeric.py:200 +│ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ └─ 0.001 _wrapit numpy/core/fromnumeric.py:40 +│ │ │ │ │ │ │ └─ 0.001 asarray +│ │ │ │ │ │ └─ 0.001 XAxis._update_offset_text_position matplotlib/axis.py:2475 +│ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:646 +│ │ │ │ │ ├─ 0.011 Spine.get_tightbbox matplotlib/artist.py:348 +│ │ │ │ │ │ └─ 0.011 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ ├─ 0.010 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ └─ 0.004 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ └─ 0.004 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ └─ 0.004 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ └─ 0.004 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ ├─ 0.003 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/dates.py +│ │ │ │ │ │ │ │ │ ├─ 0.001 datetime.replace +│ │ │ │ │ │ │ │ │ └─ 0.001 GettzFunc.__call__ dateutil/tz/tz.py:1552 +│ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:2453 +│ │ │ │ │ │ │ │ └─ 0.001 asanyarray +│ │ │ │ │ │ │ ├─ 0.002 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ └─ 0.002 date2num matplotlib/dates.py:405 +│ │ │ │ │ │ │ │ ├─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ └─ 0.001 asarray +│ │ │ │ │ │ │ ├─ 0.002 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ ├─ 0.001 MinuteLocator._create_rrule matplotlib/dates.py:1161 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper.set matplotlib/dates.py:963 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._update_rrule matplotlib/dates.py:969 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__init__ dateutil/rrule.py:428 +│ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ └─ 0.002 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ ├─ 0.001 Text.set_x matplotlib/text.py:1205 +│ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/axis.py +│ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ ├─ 0.010 Axes._update_title_position matplotlib/axes/_base.py:3044 +│ │ │ │ │ │ ├─ 0.006 Text.get_tightbbox matplotlib/artist.py:348 +│ │ │ │ │ │ │ └─ 0.006 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ ├─ 0.005 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ └─ 0.005 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ └─ 0.005 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ └─ 0.005 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ └─ 0.005 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ └─ 0.005 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ └─ 0.005 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ └─ 0.005 FontManager._findfont_cached matplotlib/font_manager.py:1453 +│ │ │ │ │ │ │ │ ├─ 0.003 FontManager.score_weight matplotlib/font_manager.py:1251 +│ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ └─ 0.001 Number.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ └─ 0.001 Logger.debug logging/__init__.py:1455 +│ │ │ │ │ │ │ │ └─ 0.001 Logger.isEnabledFor logging/__init__.py:1724 +│ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ └─ 0.004 YAxis.get_tightbbox matplotlib/axis.py:1348 +│ │ │ │ │ │ ├─ 0.002 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ ├─ 0.001 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ └─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ └─ 0.001 clip numpy/core/fromnumeric.py:2100 +│ │ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ │ └─ 0.001 _wrapit numpy/core/fromnumeric.py:40 +│ │ │ │ │ │ │ │ └─ 0.001 _clip numpy/core/_methods.py:90 +│ │ │ │ │ │ │ └─ 0.001 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ └─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ ├─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.set_locs matplotlib/ticker.py:735 +│ │ │ │ │ │ │ └─ 0.001 ScalarFormatter._compute_offset matplotlib/ticker.py:744 +│ │ │ │ │ │ │ └─ 0.001 YAxis.getter matplotlib/axis.py:2356 +│ │ │ │ │ │ │ └─ 0.001 Bbox.intervaly matplotlib/transforms.py:338 +│ │ │ │ │ │ └─ 0.001 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ └─ 0.001 matplotlib/axis.py:1343 +│ │ │ │ │ │ └─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ └─ 0.001 from_bounds matplotlib/transforms.py:795 +│ │ │ │ │ │ └─ 0.001 from_extents matplotlib/transforms.py:804 +│ │ │ │ │ │ └─ 0.001 Bbox.__init__ matplotlib/transforms.py:749 +│ │ │ │ │ ├─ 0.002 Legend.get_tightbbox matplotlib/legend.py:1057 +│ │ │ │ │ │ └─ 0.002 VPacker.get_window_extent matplotlib/offsetbox.py:363 +│ │ │ │ │ │ ├─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:54 +│ │ │ │ │ │ │ └─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:291 +│ │ │ │ │ │ │ └─ 0.001 Legend._findoffset matplotlib/legend.py:717 +│ │ │ │ │ │ │ └─ 0.001 Legend._find_best_position matplotlib/legend.py:1147 +│ │ │ │ │ │ │ └─ 0.001 Bbox.count_overlaps matplotlib/transforms.py:576 +│ │ │ │ │ │ │ └─ 0.001 PyCapsule.count_bboxes_overlapping_bbox +│ │ │ │ │ │ └─ 0.001 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ └─ 0.001 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ └─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ └─ 0.001 [self] matplotlib/_tight_layout.py +│ │ │ └─ 0.002 Figure._get_renderer matplotlib/figure.py:2848 +│ │ │ └─ 0.002 FigureCanvasTkAgg.get_renderer matplotlib/backends/backend_agg.py:387 +│ │ │ └─ 0.002 RendererAgg.__init__ matplotlib/backends/backend_agg.py:63 +│ │ ├─ 0.055 Figure.autofmt_xdate matplotlib/figure.py:175 +│ │ │ └─ 0.055 Axes.wrapper matplotlib/axes/_base.py:73 +│ │ │ └─ 0.055 XAxis.get_ticklabels matplotlib/axis.py:1479 +│ │ │ └─ 0.055 XAxis.get_majorticklabels matplotlib/axis.py:1463 +│ │ │ ├─ 0.054 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ ├─ 0.048 XAxis.get_major_ticks matplotlib/axis.py:1655 +│ │ │ │ │ ├─ 0.029 XAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ │ │ └─ 0.029 XTick.__init__ matplotlib/axis.py:367 +│ │ │ │ │ │ ├─ 0.022 XTick.__init__ matplotlib/axis.py:59 +│ │ │ │ │ │ │ ├─ 0.013 Line2D.__init__ matplotlib/lines.py:287 +│ │ │ │ │ │ │ │ ├─ 0.005 Line2D._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ │ └─ 0.005 Line2D._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] contextlib.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _setattr_cm matplotlib/cbook.py:2010 +│ │ │ │ │ │ │ │ │ ├─ 0.001 helper contextlib.py:279 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_zorder matplotlib/artist.py:1124 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.pchanged matplotlib/artist.py:414 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_pickradius matplotlib/lines.py:506 +│ │ │ │ │ │ │ │ │ └─ 0.001 Real.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_markerfacecolor matplotlib/lines.py:1227 +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D._set_markercolor matplotlib/lines.py:1203 +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_markerfacecoloralt matplotlib/lines.py:1237 +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D._set_markercolor matplotlib/lines.py:1203 +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_data matplotlib/lines.py:648 +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_ydata matplotlib/lines.py:1295 +│ │ │ │ │ │ │ │ │ └─ 0.001 iterable numpy/lib/function_base.py:348 +│ │ │ │ │ │ │ │ │ └─ 0.001 iter +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.__init__ matplotlib/artist.py:179 +│ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ ├─ 0.006 Text.__init__ matplotlib/text.py:104 +│ │ │ │ │ │ │ │ ├─ 0.004 Text.update matplotlib/text.py:194 +│ │ │ │ │ │ │ │ │ ├─ 0.003 Text.update matplotlib/artist.py:1215 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _setattr_cm matplotlib/cbook.py:2010 +│ │ │ │ │ │ │ │ │ └─ 0.001 normalize_kwargs matplotlib/cbook.py:1742 +│ │ │ │ │ │ │ │ ├─ 0.001 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ │ │ │ │ │ └─ 0.001 Text.set_linespacing matplotlib/text.py:1040 +│ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.001 Real.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ └─ 0.001 Text.__init__ matplotlib/artist.py:179 +│ │ │ │ │ │ │ │ └─ 0.001 CallbackRegistry.__init__ matplotlib/cbook.py:259 +│ │ │ │ │ │ │ │ └─ 0.001 _UnhashDict.__init__ matplotlib/cbook.py:152 +│ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/axis.py +│ │ │ │ │ │ │ └─ 0.001 XTick._apply_tickdir matplotlib/axis.py:395 +│ │ │ │ │ │ │ └─ 0.001 Line2D.set_marker matplotlib/lines.py:1189 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._recache matplotlib/markers.py:250 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._set_tickdown matplotlib/markers.py:776 +│ │ │ │ │ │ │ └─ 0.001 Affine2D.scale matplotlib/transforms.py:2040 +│ │ │ │ │ │ ├─ 0.005 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ └─ 0.005 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ ├─ 0.004 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ └─ 0.004 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ ├─ 0.002 Line2D.set_transform matplotlib/lines.py:738 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_transform matplotlib/artist.py:435 +│ │ │ │ │ │ │ │ ├─ 0.001 Text.set_verticalalignment matplotlib/text.py:1259 +│ │ │ │ │ │ │ │ │ └─ 0.001 check_in_list matplotlib/_api/__init__.py:100 +│ │ │ │ │ │ │ │ └─ 0.001 Text.pchanged matplotlib/artist.py:414 +│ │ │ │ │ │ │ │ └─ 0.001 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ │ │ │ │ │ └─ 0.001 check_in_list matplotlib/_api/__init__.py:100 +│ │ │ │ │ │ │ └─ 0.001 normalize_kwargs matplotlib/cbook.py:1742 +│ │ │ │ │ │ ├─ 0.001 XTick._get_text2_transform matplotlib/axis.py:392 +│ │ │ │ │ │ │ └─ 0.001 Axes.get_xaxis_text2_transform matplotlib/axes/_base.py:983 +│ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.__add__ matplotlib/transforms.py:1340 +│ │ │ │ │ │ │ └─ 0.001 composite_transform_factory matplotlib/transforms.py:2498 +│ │ │ │ │ │ └─ 0.001 Axes.get_xaxis_transform matplotlib/axes/_base.py:928 +│ │ │ │ │ │ └─ 0.001 Spine.get_spine_transform matplotlib/spines.py:340 +│ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ └─ 0.019 XAxis._copy_tick_props matplotlib/axis.py:1617 +│ │ │ │ │ ├─ 0.018 Line2D.update_from matplotlib/lines.py:1338 +│ │ │ │ │ │ ├─ 0.017 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ │ │ │ │ ├─ 0.016 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ │ │ │ │ │ └─ 0.016 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ └─ 0.016 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ ├─ 0.013 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ ├─ 0.005 Path.__deepcopy__ matplotlib/path.py:279 +│ │ │ │ │ │ │ │ │ │ └─ 0.005 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ndarray.__deepcopy__ +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _keep_alive copy.py:243 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ ├─ 0.004 _deepcopy_method copy.py:237 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _keep_alive copy.py:243 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MarkerStyle.__newobj__ copyreg.py:100 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ ├─ 0.001 dict.get +│ │ │ │ │ │ │ │ │ ├─ 0.001 id +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ └─ 0.001 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ └─ 0.001 issubclass +│ │ │ │ │ │ │ │ └─ 0.003 [self] copy.py +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._set_fillstyle matplotlib/markers.py:275 +│ │ │ │ │ │ └─ 0.001 Line2D.update_from matplotlib/artist.py:1167 +│ │ │ │ │ │ └─ 0.001 Line2D.pchanged matplotlib/artist.py:414 +│ │ │ │ │ └─ 0.001 Text.update_from matplotlib/text.py:342 +│ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ └─ 0.001 hasattr +│ │ │ │ ├─ 0.002 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ └─ 0.002 matplotlib/ticker.py:217 +│ │ │ │ │ └─ 0.002 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ └─ 0.002 num2date matplotlib/dates.py:457 +│ │ │ │ │ └─ 0.002 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ └─ 0.002 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ └─ 0.002 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ ├─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ └─ 0.001 [self] numpy/lib/function_base.py +│ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ ├─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ └─ 0.001 _iterinfo.mtimeset dateutil/rrule.py:1294 +│ │ │ │ ├─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ └─ 0.001 XAxis.get_transform matplotlib/axis.py:753 +│ │ │ │ └─ 0.001 LinearScale.get_transform matplotlib/scale.py:115 +│ │ │ │ └─ 0.001 IdentityTransform.__init__ matplotlib/transforms.py:1769 +│ │ │ │ └─ 0.001 IdentityTransform.__init__ matplotlib/transforms.py:110 +│ │ │ └─ 0.001 XAxis.get_major_ticks matplotlib/axis.py:1655 +│ │ │ └─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ └─ 0.001 date2num matplotlib/dates.py:405 +│ │ │ └─ 0.001 _dt64_to_ordinalf matplotlib/dates.py:310 +│ │ ├─ 0.003 Axes.plot matplotlib/axes/_axes.py:1532 +│ │ │ ├─ 0.002 _process_plot_var_args.__call__ matplotlib/axes/_base.py:227 +│ │ │ │ └─ 0.002 _process_plot_var_args._plot_args matplotlib/axes/_base.py:396 +│ │ │ │ ├─ 0.001 _check_1d matplotlib/cbook.py:1348 +│ │ │ │ │ └─ 0.001 atleast_1d numpy/core/shape_base.py:23 +│ │ │ │ │ └─ 0.001 asanyarray +│ │ │ │ └─ 0.001 matplotlib/axes/_base.py:546 +│ │ │ │ └─ 0.001 matplotlib/axes/_base.py:539 +│ │ │ │ └─ 0.001 _process_plot_var_args._make_line matplotlib/axes/_base.py:335 +│ │ │ │ └─ 0.001 Line2D.__init__ matplotlib/lines.py:287 +│ │ │ │ └─ 0.001 Line2D._internal_update matplotlib/artist.py:1226 +│ │ │ │ └─ 0.001 Line2D._update_props matplotlib/artist.py:1188 +│ │ │ │ └─ 0.001 Line2D.set_label matplotlib/artist.py:1105 +│ │ │ │ └─ 0.001 Line2D.pchanged matplotlib/artist.py:414 +│ │ │ │ └─ 0.001 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ └─ 0.001 Axes.add_line matplotlib/axes/_base.py:2362 +│ │ │ └─ 0.001 Axes._update_line_limits matplotlib/axes/_base.py:2390 +│ │ │ └─ 0.001 Line2D.get_path matplotlib/lines.py:1035 +│ │ │ └─ 0.001 Line2D.recache matplotlib/lines.py:672 +│ │ │ └─ 0.001 Path.__init__ matplotlib/path.py:99 +│ │ │ └─ 0.001 check_shape matplotlib/_api/__init__.py:133 +│ │ ├─ 0.001 test_frbc_device.py:544 +│ │ ├─ 0.001 Axes.legend matplotlib/axes/_axes.py:218 +│ │ │ └─ 0.001 Legend.__init__ matplotlib/legend.py:354 +│ │ │ └─ 0.001 bool._init_legend_box matplotlib/legend.py:837 +│ │ │ └─ 0.001 HandlerLine2D.legend_artist matplotlib/legend_handler.py:103 +│ │ │ └─ 0.001 HandlerLine2D.create_artists matplotlib/legend_handler.py:285 +│ │ │ └─ 0.001 HandlerLine2D.update_prop matplotlib/legend_handler.py:86 +│ │ │ └─ 0.001 HandlerLine2D._update_prop matplotlib/legend_handler.py:77 +│ │ │ └─ 0.001 HandlerLine2D._default_update_prop matplotlib/legend_handler.py:83 +│ │ │ └─ 0.001 Line2D.update_from matplotlib/lines.py:1338 +│ │ │ └─ 0.001 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ └─ 0.001 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ └─ 0.001 _deepcopy_dict copy.py:227 +│ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ └─ 0.001 _deepcopy_method copy.py:237 +│ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ └─ 0.001 Axes.grid matplotlib/axes/_base.py:3273 +│ │ └─ 0.001 YAxis.grid matplotlib/axis.py:1707 +│ │ └─ 0.001 YAxis.set_tick_params matplotlib/axis.py:957 +│ │ └─ 0.001 YTick._apply_params matplotlib/axis.py:302 +│ ├─ 1.667 PlanningServiceImpl.plan ../planning_service_impl.py:181 +│ │ ├─ 1.653 RootPlanner.plan ../root_planner.py:54 +│ │ │ ├─ 1.451 CongestionPointPlanner.create_improved_planning ../congestion_point_planner.py:142 +│ │ │ │ ├─ 1.446 S2FrbcDevicePlanner.create_improved_planning ../device_planner/frbc/s2_frbc_device_planner.py:98 +│ │ │ │ │ ├─ 1.445 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:257 +│ │ │ │ │ │ ├─ 1.438 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 +│ │ │ │ │ │ │ ├─ 1.357 try_create_next_state ../device_planner/frbc/frbc_state.py:357 +│ │ │ │ │ │ │ │ ├─ 1.052 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 +│ │ │ │ │ │ │ │ │ ├─ 0.282 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ ├─ 0.156 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ │ ├─ 0.109 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.031 str.replace +│ │ │ │ │ │ │ │ │ │ ├─ 0.010 str.strip +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 list.count +│ │ │ │ │ │ │ │ │ │ └─ 0.003 len +│ │ │ │ │ │ │ │ │ ├─ 0.130 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 +│ │ │ │ │ │ │ │ │ │ ├─ 0.068 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.042 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 abs +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ │ ├─ 0.041 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.012 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 +│ │ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.get_bucket ../device_planner/frbc/frbc_state.py:488 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 FrbcState.set_selection_reason ../device_planner/frbc/frbc_state.py:509 +│ │ │ │ │ │ │ │ │ ├─ 0.096 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 +│ │ │ │ │ │ │ │ │ │ ├─ 0.047 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ │ │ ├─ 0.042 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.007 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 +│ │ │ │ │ │ │ │ │ ├─ 0.083 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 +│ │ │ │ │ │ │ │ │ │ ├─ 0.054 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 next +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ ├─ 0.021 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 +│ │ │ │ │ │ │ │ │ ├─ 0.064 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 +│ │ │ │ │ │ │ │ │ │ ├─ 0.045 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 next +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ │ ├─ 0.017 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.002 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ ├─ 0.049 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ │ │ │ ├─ 0.032 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.017 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ │ ├─ 0.039 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 +│ │ │ │ │ │ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.011 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 FrbcTimestep.get_nr_of_buckets ../device_planner/frbc/frbc_timestep.py:57 +│ │ │ │ │ │ │ │ │ ├─ 0.024 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.006 isinstance +│ │ │ │ │ │ │ │ │ ├─ 0.018 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 +│ │ │ │ │ │ │ │ │ │ ├─ 0.009 timedelta.total_seconds +│ │ │ │ │ │ │ │ │ │ └─ 0.009 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ ├─ 0.013 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ │ ├─ 0.009 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.004 hash +│ │ │ │ │ │ │ │ │ ├─ 0.012 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ │ ├─ 0.010 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ ├─ 0.009 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ │ │ ├─ 0.008 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 +│ │ │ │ │ │ │ │ │ │ ├─ 0.007 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.008 isinstance +│ │ │ │ │ │ │ │ │ ├─ 0.007 dict.copy +│ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ ├─ 0.005 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ ├─ 0.005 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 +│ │ │ │ │ │ │ │ │ ├─ 0.005 S2ActuatorConfiguration.get_factor ../device_planner/frbc/s2_frbc_actuator_configuration.py:15 +│ │ │ │ │ │ │ │ │ ├─ 0.004 dict.items +│ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 +│ │ │ │ │ │ │ │ │ ├─ 0.003 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.003 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ │ │ │ │ │ ├─ 0.003 dict.keys +│ │ │ │ │ │ │ │ │ ├─ 0.002 FrbcTimestep.get_min_constraint ../device_planner/frbc/frbc_timestep.py:112 +│ │ │ │ │ │ │ │ │ ├─ 0.002 FrbcTimestep.get_forecasted_usage ../device_planner/frbc/frbc_timestep.py:168 +│ │ │ │ │ │ │ │ │ ├─ 0.001 FrbcTimestep.get_target ../device_planner/frbc/frbc_timestep.py:109 +│ │ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_max_constraint ../device_planner/frbc/frbc_timestep.py:115 +│ │ │ │ │ │ │ │ ├─ 0.150 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ ├─ 0.110 [self] uuid.py +│ │ │ │ │ │ │ │ │ ├─ 0.022 str.replace +│ │ │ │ │ │ │ │ │ ├─ 0.009 list.count +│ │ │ │ │ │ │ │ │ ├─ 0.005 str.strip +│ │ │ │ │ │ │ │ │ └─ 0.004 len +│ │ │ │ │ │ │ │ ├─ 0.098 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ ├─ 0.021 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ ├─ 0.016 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.005 isinstance +│ │ │ │ │ │ │ │ ├─ 0.009 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ ├─ 0.006 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.003 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ ├─ 0.002 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ ├─ 0.008 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ ├─ 0.007 isinstance +│ │ │ │ │ │ │ │ ├─ 0.007 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.003 hash +│ │ │ │ │ │ │ │ ├─ 0.003 dict.items +│ │ │ │ │ │ │ │ ├─ 0.001 timer_key ../device_planner/frbc/frbc_state.py:346 +│ │ │ │ │ │ │ │ └─ 0.001 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ ├─ 0.071 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 +│ │ │ │ │ │ │ │ ├─ 0.053 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.007 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.003 len +│ │ │ │ │ │ │ │ ├─ 0.005 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 +│ │ │ │ │ │ │ │ ├─ 0.003 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 +│ │ │ │ │ │ │ │ ├─ 0.002 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 +│ │ │ │ │ │ │ │ │ └─ 0.002 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.001 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ └─ 0.001 dict.keys +│ │ │ │ │ │ │ └─ 0.010 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ ├─ 0.003 FrbcTimestep.get_final_states_within_fill_level_target ../device_planner/frbc/frbc_timestep.py:132 +│ │ │ │ │ │ │ ├─ 0.002 ../device_planner/frbc/frbc_timestep.py:136 +│ │ │ │ │ │ │ │ └─ 0.002 FrbcTimestep.state_is_within_fill_level_target_range ../device_planner/frbc/frbc_timestep.py:146 +│ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ ├─ 0.002 FrbcTimestep.clear ../device_planner/frbc/frbc_timestep.py:171 +│ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ └─ 0.001 JouleProfile.add ../common/joule_profile.py:59 +│ │ │ │ ├─ 0.002 Proposal.get_global_improvement_value ../common/proposal.py:29 +│ │ │ │ │ ├─ 0.001 TargetProfile.subtract ../common/target_profile.py:104 +│ │ │ │ │ └─ 0.001 TargetProfile.sum_quadratic_distance ../common/target_profile.py:146 +│ │ │ │ ├─ 0.001 CongestionPointPlanner.get_current_planning ../congestion_point_planner.py:216 +│ │ │ │ │ └─ 0.001 JouleProfile.add ../common/joule_profile.py:59 +│ │ │ │ ├─ 0.001 [self] ../congestion_point_planner.py +│ │ │ │ └─ 0.001 Proposal.get_congestion_improvement_value ../common/proposal.py:60 +│ │ │ │ └─ 0.001 JouleProfile.subtract ../common/joule_profile.py:74 +│ │ │ └─ 0.201 CongestionPointPlanner.create_initial_planning ../congestion_point_planner.py:51 +│ │ │ ├─ 0.200 S2FrbcDevicePlanner.create_initial_planning ../device_planner/frbc/s2_frbc_device_planner.py:136 +│ │ │ │ └─ 0.200 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:257 +│ │ │ │ ├─ 0.199 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 +│ │ │ │ │ ├─ 0.188 try_create_next_state ../device_planner/frbc/frbc_state.py:357 +│ │ │ │ │ │ ├─ 0.148 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 +│ │ │ │ │ │ │ ├─ 0.031 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ ├─ 0.024 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ ├─ 0.019 [self] uuid.py +│ │ │ │ │ │ │ │ ├─ 0.002 str.replace +│ │ │ │ │ │ │ │ ├─ 0.002 str.strip +│ │ │ │ │ │ │ │ └─ 0.001 list.count +│ │ │ │ │ │ │ ├─ 0.015 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 +│ │ │ │ │ │ │ │ ├─ 0.013 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 +│ │ │ │ │ │ │ │ │ ├─ 0.010 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.002 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 +│ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ ├─ 0.015 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 +│ │ │ │ │ │ │ │ ├─ 0.011 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ ├─ 0.005 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.004 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.001 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 +│ │ │ │ │ │ │ ├─ 0.015 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 +│ │ │ │ │ │ │ │ ├─ 0.009 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ ├─ 0.005 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 +│ │ │ │ │ │ │ ├─ 0.011 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 +│ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ ├─ 0.001 abs +│ │ │ │ │ │ │ │ │ └─ 0.001 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ └─ 0.002 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 +│ │ │ │ │ │ │ ├─ 0.007 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ ├─ 0.006 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 +│ │ │ │ │ │ │ │ ├─ 0.005 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 +│ │ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.002 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ ├─ 0.004 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ ├─ 0.003 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ ├─ 0.003 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 +│ │ │ │ │ │ │ │ ├─ 0.002 timedelta.total_seconds +│ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ ├─ 0.003 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ ├─ 0.002 [self] uuid.py +│ │ │ │ │ │ │ │ └─ 0.001 hash +│ │ │ │ │ │ │ ├─ 0.003 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ ├─ 0.002 isinstance +│ │ │ │ │ │ │ ├─ 0.002 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ ├─ 0.002 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ ├─ 0.001 dict.copy +│ │ │ │ │ │ │ └─ 0.001 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ ├─ 0.024 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ ├─ 0.013 [self] uuid.py +│ │ │ │ │ │ │ ├─ 0.006 str.replace +│ │ │ │ │ │ │ ├─ 0.003 str.strip +│ │ │ │ │ │ │ ├─ 0.001 len +│ │ │ │ │ │ │ └─ 0.001 list.count +│ │ │ │ │ │ ├─ 0.011 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ ├─ 0.002 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ ├─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ ├─ 0.001 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ └─ 0.011 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 +│ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ ├─ 0.003 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 +│ │ │ │ │ ├─ 0.002 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 +│ │ │ │ │ ├─ 0.001 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 +│ │ │ │ │ │ └─ 0.001 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 +│ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ └─ 0.001 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 +│ │ │ │ └─ 0.001 FrbcTimestep.set_targets ../device_planner/frbc/frbc_timestep.py:60 +│ │ │ └─ 0.001 JouleProfile.add ../common/joule_profile.py:59 +│ │ └─ 0.014 PlanningServiceImpl.create_controller_tree ../planning_service_impl.py:121 +│ │ └─ 0.014 S2FrbcDevicePlanner.__init__ ../device_planner/frbc/s2_frbc_device_planner.py:33 +│ │ └─ 0.014 OperationModeProfileTree.__init__ ../device_planner/frbc/operation_mode_profile_tree.py:123 +│ │ └─ 0.014 OperationModeProfileTree.generate_timesteps ../device_planner/frbc/operation_mode_profile_tree.py:138 +│ │ ├─ 0.005 get_latest_before ../device_planner/frbc/operation_mode_profile_tree.py:201 +│ │ │ ├─ 0.004 datetime.replace +│ │ │ └─ 0.001 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ ├─ 0.005 get_usage_forecast_for_timestep ../device_planner/frbc/operation_mode_profile_tree.py:239 +│ │ │ └─ 0.005 sub_profile ../device_planner/frbc/usage_forecast_util.py:58 +│ │ │ ├─ 0.003 UsageForecastElement.split ../device_planner/frbc/usage_forecast_util.py:20 +│ │ │ │ ├─ 0.002 UsageForecastElement.__init__ ../device_planner/frbc/usage_forecast_util.py:9 +│ │ │ │ │ ├─ 0.001 datetime.replace +│ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ └─ 0.001 UsageForecastElement.date_in_element ../device_planner/frbc/usage_forecast_util.py:29 +│ │ │ │ └─ 0.001 datetime.replace +│ │ │ ├─ 0.001 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ └─ 0.001 UsageForecastElement.get_usage ../device_planner/frbc/usage_forecast_util.py:14 +│ │ │ └─ 0.001 timedelta.total_seconds +│ │ ├─ 0.001 datetime.astimezone +│ │ ├─ 0.001 from_fill_level_target_profile ../device_planner/frbc/fill_level_target_util.py:28 +│ │ ├─ 0.001 from_storage_usage_profile ../device_planner/frbc/usage_forecast_util.py:45 +│ │ └─ 0.001 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ └─ 0.001 create_ev_device_state test_frbc_device.py:59 +│ └─ 0.001 create_driving_usage_forecast test_frbc_device.py:513 +│ └─ 0.001 inner s2python/validate_values_mixin.py:42 +│ └─ 0.001 FRBCUsageForecast.__init__ pydantic/main.py:204 +│ └─ 0.001 SchemaValidator.validate_python +└─ 1.297 _find_and_load :1022 + └─ 1.297 _find_and_load_unlocked :987 + ├─ 0.760 _load_unlocked :664 + │ └─ 0.760 SourceFileLoader.exec_module :877 + │ ├─ 0.759 _call_with_frames_removed :233 + │ │ ├─ 0.725 ../device_planner/frbc/s2_frbc_device_planner.py:1 + │ │ │ └─ 0.725 _find_and_load :1022 + │ │ │ └─ 0.725 _find_and_load_unlocked :987 + │ │ │ └─ 0.725 _load_unlocked :664 + │ │ │ └─ 0.725 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.725 _call_with_frames_removed :233 + │ │ │ ├─ 0.721 ../device_planner/frbc/operation_mode_profile_tree.py:1 + │ │ │ │ ├─ 0.499 _find_and_load :1022 + │ │ │ │ │ └─ 0.499 _find_and_load_unlocked :987 + │ │ │ │ │ ├─ 0.438 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.438 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ ├─ 0.437 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.289 matplotlib/pyplot.py:1 + │ │ │ │ │ │ │ │ ├─ 0.230 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.230 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.230 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.230 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ ├─ 0.227 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.129 matplotlib/figure.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.122 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 matplotlib/projections/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.068 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 matplotlib/axes/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.039 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 matplotlib/axes/_axes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/quiver.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Quiver.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Quiver._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/_docstring.py:79 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Artist.recursive_subclasses matplotlib/_api/__init__.py:354 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/tri/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/tri/_tricontour.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 TriContourSet.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TriContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Substitution.__call__ matplotlib/_docstring.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/tri/_tripcolor.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _finddoc inspect.py:663 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/category.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 dateutil/parser/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 dateutil/parser/_parser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 __getattr__ dateutil/__init__.py:12 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 import_module importlib/__init__.py:108 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _gcd_import :1038 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dateutil/tz/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/tz/tz.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _new_module :48 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/axes/_secondary_axes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/legend.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/inset.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unpack_uint32 :84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 Axes matplotlib/axes/_axes.py:67 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _preprocess_data matplotlib/__init__.py:1447 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _add_data_doc matplotlib/__init__.py:1403 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] matplotlib/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 make_keyword_only matplotlib/_api/deprecation.py:414 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_api/deprecation.py:439 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Axes.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 matplotlib/axes/_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 matplotlib/axis.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 Axis.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 Axis._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/table.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Table.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Table._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 matplotlib/offsetbox.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 DrawingArea.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 DrawingArea._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sub re.py:202 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _AxesBase.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _AxesBase._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.append sre_parse.py:173 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getLogger logging/__init__.py:2071 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _axis_method_wrapper.__set_name__ matplotlib/axes/_base.py:67 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 unwrap inspect.py:612 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.052 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.052 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 mpl_toolkits/mplot3d/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.031 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.031 mpl_toolkits/mplot3d/axes3d.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 mpl_toolkits/mplot3d/art3d.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 Path3DCollection.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 Path3DCollection._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Patch3DCollection mpl_toolkits/mplot3d/art3d.py:625 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 mpl_toolkits/mplot3d/axis3d.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Axis.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Axis._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Axes3D.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axes3D.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axes3D._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Axes3D mpl_toolkits/mplot3d/axes3d.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _preprocess_data matplotlib/__init__.py:1447 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _axis_method_wrapper.__set_name__ matplotlib/axes/_base.py:67 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 matplotlib/projections/geo.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 GeoAxes.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 GeoAxes.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 GeoAxes._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/artist.py:169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ParameterKind.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _ParameterKind.__new__ enum.py:678 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] enum.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 matplotlib/projections/polar.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 PolarAxes.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 RadialTick.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 RadialTick._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Figure.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Figure._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FigureBase matplotlib/figure.py:118 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ ├─ 0.092 matplotlib/colorbar.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.089 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.088 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.054 matplotlib/contour.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 matplotlib/backend_bases.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.049 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.048 matplotlib/text.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.039 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 matplotlib/patches.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 RegularPolygon.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 RegularPolygon._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Tokenizer.__init__ sre_parse.py:225 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArrowStyle.__init_subclass__ matplotlib/patches.py:2293 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArrowStyle.pprint_styles matplotlib/patches.py:2335 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/patches.py:2339 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_bound_method inspect.py:1959 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.replace inspect.py:3014 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.default inspect.py:2691 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Arrow matplotlib/patches.py:1313 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Path._create_closed matplotlib/path.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_unmasked_float_array matplotlib/cbook.py:1337 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asarray + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/font_manager.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_fontmanager matplotlib/font_manager.py:1625 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 json_load matplotlib/font_manager.py:1030 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 load json/__init__.py:274 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads json/__init__.py:299 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 JSONDecoder.decode json/decoder.py:332 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 JSONDecoder.raw_decode json/decoder.py:343 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _json_decode matplotlib/font_manager.py:989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/font_manager.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isabs posixpath.py:60 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_sep posixpath.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontEntry.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontEntry._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_afm.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1728 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1728 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1726 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1724 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/textpath.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/mathtext.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:2249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/dviread.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Enum.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Enum._create_ enum.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_text_helpers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._get_field dataclasses.py:722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 Text.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Text._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/backend_tools.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/layout_engine.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.pop + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.034 matplotlib/collections.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 EventCollection.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 EventCollection._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.pop + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] re.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/artist.py:169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 matplotlib/lines.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Line2D.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Line2D._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 define_aliases matplotlib/_api/__init__.py:224 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Collection matplotlib/collections.py:28 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/spines.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 matplotlib/image.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 BboxImage.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 BboxImage._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ ├─ 0.005 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ └─ 0.003 loads + │ │ │ │ │ │ │ │ ├─ 0.051 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ └─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.051 matplotlib/style/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ ├─ 0.041 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.041 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.041 loads + │ │ │ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.010 matplotlib/style/core.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.010 read_style_directory matplotlib/style/core.py:198 + │ │ │ │ │ │ │ │ │ └─ 0.010 _rc_params_in_file matplotlib/__init__.py:884 + │ │ │ │ │ │ │ │ │ ├─ 0.008 RcParams.__setitem__ matplotlib/__init__.py:748 + │ │ │ │ │ │ │ │ │ │ ├─ 0.004 validate_cycler matplotlib/rcsetup.py:814 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 :1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cycler matplotlib/rcsetup.py:677 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 f matplotlib/rcsetup.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/rcsetup.py:102 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color_for_prop_cycle matplotlib/rcsetup.py:304 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color matplotlib/rcsetup.py:332 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 literal_eval ast.py:54 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert ast.py:84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert_signed_num ast.py:76 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert_num ast.py:72 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/rcsetup.py:118 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color_for_prop_cycle matplotlib/rcsetup.py:304 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color matplotlib/rcsetup.py:332 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_color_like matplotlib/colors.py:223 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/rcsetup.py:759 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cycler cycler/__init__.py:482 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit_Constant ast.py:430 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 validate_color matplotlib/rcsetup.py:332 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/rcsetup.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_color_like matplotlib/colors.py:223 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 to_rgba matplotlib/colors.py:277 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_rgba_no_colorcycle matplotlib/colors.py:324 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 RcParams._set matplotlib/__init__.py:678 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_font_properties matplotlib/rcsetup.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._inner pyparsing/util.py:372 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseCache pyparsing/core.py:973 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt._parseCache pyparsing/core.py:973 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseResults.copy pyparsing/results.py:573 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseResults.__new__ pyparsing/results.py:153 + │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _open_file_or_url matplotlib/__init__.py:866 + │ │ │ │ │ │ │ │ │ └─ 0.001 _strip_comment matplotlib/cbook.py:468 + │ │ │ │ │ │ │ │ │ └─ 0.001 str.strip + │ │ │ │ │ │ │ │ ├─ 0.007 _copy_docstring_and_deprecators matplotlib/pyplot.py:176 + │ │ │ │ │ │ │ │ │ ├─ 0.006 _add_pyplot_note matplotlib/pyplot.py:209 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 len + │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/pyplot.py + │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ └─ 0.148 pint/__init__.py:1 + │ │ │ │ │ │ │ ├─ 0.147 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.147 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ ├─ 0.146 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.146 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.146 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.146 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.146 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.146 pint/delegates/__init__.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.144 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 pint/delegates/txt_defparser/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ ├─ 0.143 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.143 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.143 pint/delegates/txt_defparser/defparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.133 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.133 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.133 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.133 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.132 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.096 pint/delegates/base_defparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 pint/facets/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.093 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.087 pint/facets/context/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 pint/facets/context/definitions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.085 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 pint/facets/plain/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.083 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.082 pint/facets/plain/definitions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.078 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.078 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.077 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.077 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.077 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.073 pint/_typing.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 pint/compat.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.072 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.072 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.071 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.071 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.071 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.071 numpy/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.044 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.043 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 numpy/lib/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 numpy/lib/index_tricks.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 numpy/matrixlib/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/matrixlib/defmatrix.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/linalg/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/linalg/linalg.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 numpy/_typing/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/_typing/_array_like.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _UnionGenericAlias.__getitem__ typing.py:1046 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__getitem__ typing.py:1046 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.copy_with typing.py:1083 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _NestedSequence.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1330 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_dtype_like.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _LiteralGenericAlias.__eq__ typing.py:1278 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _remove_dups_flatten typing.py:267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _deduplicate typing.py:253 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__hash__ typing.py:1284 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_char_codes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.__getitem__ typing.py:407 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.Literal typing.py:532 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 typing.py:1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_typing/_nested_sequence.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _classify_pyc :585 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/twodim_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ â”‚ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/npyio.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/_iotools.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/polynomial.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/scimath.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/type_check.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ismethod numpy/_utils/_inspect.py:13 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/shape_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple.__new__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/lib/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 numpy/random/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 numpy/random/_pickle.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ExtensionFileLoader.exec_module :1182 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 numpy/ma/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/ma/core.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.__init__ numpy/ma/core.py:8389 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.getdoc numpy/ma/core.py:8394 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_object_signature numpy/ma/core.py:131 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargs numpy/_utils/_inspect.py:65 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ma/extras.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.__init__ numpy/ma/extras.py:233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.getdoc numpy/ma/extras.py:237 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 doc_note numpy/ma/core.py:115 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/polynomial/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/fft/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/fft/_pocketfft.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 numpy/__config__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 numpy/core/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 numpy/core/multiarray.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 numpy/core/overrides.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 create_dynamic + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/core/numeric.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/shape_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/fromnumeric.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 extend_all numpy/core/numeric.py:2507 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/numerictypes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/_type_aliases.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _ModuleLockManager.__init__ :165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_internal.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ctypes/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _check_size ctypes/__init__.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 calcsize + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.tell sre_parse.py:287 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_add_newdocs.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 add_newdoc numpy/core/function_base.py:497 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/defchararray.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargs numpy/_utils/_inspect.py:65 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cleanup numpy/__config__.py:19 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__config__.py:25 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cleanup numpy/__config__.py:19 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__config__.py:25 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cleanup numpy/__config__.py:19 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__config__.py:25 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _register_known_types numpy/core/getlimits.py:162 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MachArLike.__init__ numpy/core/getlimits.py:34 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MachArLike._float_to_str numpy/core/getlimits.py:111 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _array_str_implementation numpy/core/arrayprint.py:1595 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 longdouble.wrapper numpy/core/arrayprint.py:506 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _guarded_repr_or_str numpy/core/arrayprint.py:1588 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__init__.py:192 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.format + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pint/util.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/util.py:921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/pint_eval.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/converters.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._hash_add dataclasses.py:842 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._set_qualname dataclasses.py:817 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 acquire_lock + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ScaleConverter.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ScaleConverter._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _DataclassParams.__init__ dataclasses.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] dataclasses.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type._signature_get_user_defined_method inspect.py:1867 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/plain/objects.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/plain/quantity.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ContextDefinition._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/nonmultiplicative/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/system/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/system/objects.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/system/definitions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/group/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/registry.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/quantity.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/numpy_func.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 flexcache/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 version importlib/metadata/__init__.py:989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 distribution importlib/metadata/__init__.py:963 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 Distribution.from_name importlib/metadata/__init__.py:532 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 importlib_metadata/__init__.py:930 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 FastPath.search importlib_metadata/__init__.py:789 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 Lookup.search importlib_metadata/__init__.py:837 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 flexcache/flexcache.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 InvalidateByMultiPathsMtime.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 InvalidateByMultiPathsMtime._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 InvalidateByMultiPathsMtime._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DiskCache flexcache/flexcache.py:284 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 flexparser/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 flexparser/flexparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Hash.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Hash._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 BOS._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] dataclasses.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 pint/delegates/txt_defparser/context.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pint/delegates/txt_defparser/plain.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 AliasDefinition.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 AliasDefinition._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 AliasDefinition._hash_add dataclasses.py:842 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:1040 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginContext pint/delegates/txt_defparser/context.py:82 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/block.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/group.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/txt_defparser/system.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _field_init dataclasses.py:448 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/full.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/_to_register.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/_format_helpers.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 version importlib/metadata/__init__.py:989 + │ │ │ │ │ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 + │ │ │ │ │ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 + │ │ │ │ │ │ │ └─ 0.001 message_from_string email/__init__.py:32 + │ │ │ │ │ │ │ └─ 0.001 Parser.parsestr email/parser.py:59 + │ │ │ │ │ │ │ └─ 0.001 Parser.parse email/parser.py:41 + │ │ │ │ │ │ │ └─ 0.001 FeedParser.feed email/feedparser.py:173 + │ │ │ │ │ │ │ └─ 0.001 FeedParser._call_parse email/feedparser.py:178 + │ │ │ │ │ │ │ └─ 0.001 FeedParser._parsegen email/feedparser.py:218 + │ │ │ │ │ │ │ └─ 0.001 FeedParser._parse_headers email/feedparser.py:471 + │ │ │ │ │ │ │ └─ 0.001 Message.set_raw email/message.py:479 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.062 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.062 _find_and_load :1022 + │ │ │ │ │ └─ 0.062 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.062 _load_unlocked :664 + │ │ │ │ │ └─ 0.062 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.060 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.060 matplotlib/__init__.py:1 + │ │ │ │ │ │ ├─ 0.040 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.039 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.038 matplotlib/rcsetup.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.038 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ ├─ 0.037 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ ├─ 0.035 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 matplotlib/_fontconfig_pattern.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 pyparsing/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 pyparsing/core.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Regex.set_parse_action pyparsing/core.py:613 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:694 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _trim_arity pyparsing/core.py:258 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 extract_stack traceback.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 extract traceback.py:338 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrameSummary.line traceback.py:301 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getline linecache.py:26 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getlines linecache.py:36 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 updatecache linecache.py:80 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pyparsing/core.py:6208 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 srange pyparsing/core.py:6071 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore.parseImpl pyparsing/core.py:5062 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserElement pyparsing/core.py:390 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 replaced_by_pep8 pyparsing/util.py:361 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.__init__ pyparsing/core.py:5779 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.leave_whitespace pyparsing/core.py:4658 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Or.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Or.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Or.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Literal.copy pyparsing/core.py:519 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pyparsing/common.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pyparsing_common pyparsing/common.py:8 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Regex.__add__ pyparsing/core.py:1442 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:3846 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:457 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 White.__init__ pyparsing/core.py:3555 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.__init__ pyparsing/core.py:5779 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.leave_whitespace pyparsing/core.py:4658 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3888 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.copy pyparsing/core.py:519 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pyparsing/helpers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Combine.__call__ pyparsing/core.py:1730 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.copy pyparsing/core.py:519 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Suppress.__init__ pyparsing/core.py:5972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:5755 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:4615 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.__init__ pyparsing/core.py:2452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.name pyparsing/core.py:1940 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 make_html_tags pyparsing/helpers.py:605 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _makeTags pyparsing/helpers.py:547 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pyparsing/exceptions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collapse_string_to_ranges pyparsing/util.py:209 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pyparsing/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.tell sre_parse.py:287 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 matplotlib/colors.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 PIL/Image.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PIL/ExifTags.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Base PIL/ExifTags.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_descriptor enum.py:12 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ExifTags.py:295 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _new_module :48 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _classify_pyc :585 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/scale.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PIL/PngImagePlugin.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ImagePalette.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cycler/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Generic.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ └─ 0.001 cb :198 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_docstring.py:1 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ ├─ 0.011 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.011 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.011 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.011 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.011 matplotlib/cm.py:1 + │ │ │ │ │ │ │ ├─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/colorizer.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/artist.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Artist._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.append sre_parse.py:173 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__len__ sre_parse.py:161 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/_cm_bivar.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 array + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_cm_listed.py:1 + │ │ │ │ │ │ │ └─ 0.003 _gen_cmap_registry matplotlib/cm.py:32 + │ │ │ │ │ │ │ ├─ 0.001 LinearSegmentedColormap.reversed matplotlib/colors.py:1133 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/colors.py:1152 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/colors.py:1154 + │ │ │ │ │ │ │ ├─ 0.001 ListedColormap.reversed matplotlib/colors.py:1233 + │ │ │ │ │ │ │ │ └─ 0.001 ListedColormap.__init__ matplotlib/colors.py:1193 + │ │ │ │ │ │ │ └─ 0.001 from_list matplotlib/colors.py:1080 + │ │ │ │ │ │ │ └─ 0.001 linspace numpy/core/function_base.py:24 + │ │ │ │ │ │ │ └─ 0.001 arange + │ │ │ │ │ │ ├─ 0.006 _rc_params_in_file matplotlib/__init__.py:884 + │ │ │ │ │ │ │ ├─ 0.003 RcParams.__setitem__ matplotlib/__init__.py:748 + │ │ │ │ │ │ │ │ ├─ 0.002 validate_font_properties matplotlib/rcsetup.py:426 + │ │ │ │ │ │ │ │ │ └─ 0.002 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 + │ │ │ │ │ │ │ │ │ ├─ 0.001 And._inner pyparsing/util.py:372 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5172 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5062 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re_match pyparsing/core.py:3127 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re pyparsing/core.py:3106 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ └─ 0.001 _make_fontconfig_parser matplotlib/_fontconfig_pattern.py:55 + │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.__add__ pyparsing/core.py:1442 + │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 + │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:3846 + │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ └─ 0.001 validate_cycler matplotlib/rcsetup.py:814 + │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ └─ 0.001 cycler matplotlib/rcsetup.py:677 + │ │ │ │ │ │ │ │ └─ 0.001 f matplotlib/rcsetup.py:99 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/rcsetup.py:118 + │ │ │ │ │ │ │ │ └─ 0.001 validate_color_for_prop_cycle matplotlib/rcsetup.py:304 + │ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 + │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_charset sre_compile.py:265 + │ │ │ │ │ │ │ ├─ 0.001 matplotlib/__init__.py:1000 + │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ └─ 0.001 _open_file_or_url matplotlib/__init__.py:866 + │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/__init__.py + │ │ │ │ │ │ ├─ 0.003 _check_versions matplotlib/__init__.py:245 + │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.001 parse packaging/version.py:47 + │ │ │ │ │ │ │ │ └─ 0.001 Version.__init__ packaging/version.py:188 + │ │ │ │ │ │ │ │ └─ 0.001 _parse_letter_version packaging/version.py:471 + │ │ │ │ │ │ │ └─ 0.001 import_module importlib/__init__.py:108 + │ │ │ │ │ │ │ └─ 0.001 _gcd_import :1038 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ └─ 0.001 RcParams.copy matplotlib/__init__.py:842 + │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 + │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ └─ 0.001 loads + │ │ │ │ ├─ 0.220 RegistryMeta.__call__ pint/facets/plain/registry.py:156 + │ │ │ │ │ └─ 0.220 UnitRegistry._after_init pint/facets/system/registry.py:70 + │ │ │ │ │ └─ 0.220 UnitRegistry._after_init pint/facets/group/registry.py:58 + │ │ │ │ │ └─ 0.220 UnitRegistry._after_init pint/facets/plain/registry.py:328 + │ │ │ │ │ ├─ 0.146 UnitRegistry.load_definitions pint/facets/plain/registry.py:580 + │ │ │ │ │ │ ├─ 0.135 DefParser.parse_file pint/delegates/txt_defparser/defparser.py:121 + │ │ │ │ │ │ │ └─ 0.135 parse flexparser/flexparser.py:1610 + │ │ │ │ │ │ │ ├─ 0.134 _PintParser.parse flexparser/flexparser.py:1218 + │ │ │ │ │ │ │ │ └─ 0.134 _PintParser.parse_file pint/delegates/txt_defparser/defparser.py:53 + │ │ │ │ │ │ │ │ └─ 0.134 _PintParser.parse_file flexparser/flexparser.py:1265 + │ │ │ │ │ │ │ │ └─ 0.134 _PintParser.parse_bytes flexparser/flexparser.py:1248 + │ │ │ │ │ │ │ │ └─ 0.134 PintRootBlock.consume_body_closing flexparser/flexparser.py:1011 + │ │ │ │ │ │ │ │ ├─ 0.133 PintRootBlock.consume_body flexparser/flexparser.py:981 + │ │ │ │ │ │ │ │ │ ├─ 0.063 GroupDefinition.consume flexparser/flexparser.py:1033 + │ │ │ │ │ │ │ │ │ │ ├─ 0.035 GroupDefinition.consume_body_closing flexparser/flexparser.py:1011 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 GroupDefinition.consume_body flexparser/flexparser.py:981 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 UnitDefinition.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.match + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] tokenize.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _build_eval_tree pint/pint_eval.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _build_eval_tree pint/pint_eval.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 KeysView.__iter__ _collections_abc.py:885 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 ForwardRelation.from_string_and_config pint/delegates/txt_defparser/context.py:59 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ForwardRelation._from_string_and_context_sep pint/delegates/txt_defparser/context.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 pint/delegates/txt_defparser/context.py:47 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] tokenize.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _subx re.py:324 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__truediv__ pint/util.py:875 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.items _collections_abc.py:840 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.set_position flexparser/flexparser.py:207 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 GroupDefinition.body_classes flexparser/flexparser.py:945 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 GroupDefinition.consume_closing flexparser/flexparser.py:997 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 GroupDefinition.closing_classes flexparser/flexparser.py:954 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 GroupDefinition.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 GroupDefinition._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 DirectiveBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.items + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 EndDirectiveBlock.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator.peek flexparser/flexparser.py:699 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator._get_next flexparser/flexparser.py:687 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator._get_next_strip flexparser/flexparser.py:671 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Spliter.__next__ flexparser/flexparser.py:532 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Statement.from_statement_iterator_element flexparser/flexparser.py:181 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Statement.set_position flexparser/flexparser.py:207 + │ │ │ │ │ │ │ │ │ │ ├─ 0.026 ContextDefinition.consume_opening flexparser/flexparser.py:967 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 ContextDefinition.opening_classes flexparser/flexparser.py:936 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 GroupDefinition.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 GroupDefinition._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 DirectiveBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Block._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dict.items + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _summarize flexparser/flexparser.py:94 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginContext.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 StatementIterator.peek flexparser/flexparser.py:699 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ ├─ 0.056 UnitDefinition.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ ├─ 0.042 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] tokenize.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Pattern.match + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isidentifier + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 tokenize tokenize.py:406 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.encode + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _subx re.py:324 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 filter re.py:330 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_template sre_parse.py:1066 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lower + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Converter.from_arguments pint/converters.py:55 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/delegates/txt_defparser/plain.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitDefinition.__init__ :2 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__post_init__ pint/facets/plain/definitions.py:133 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_dim pint/errors.py:38 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.keys _collections_abc.py:836 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 DerivedDimensionDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:231 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 tokenize tokenize.py:406 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 detect_encoding tokenize.py:297 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/util.py:784 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ItemsView.__iter__ _collections_abc.py:909 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/delegates/txt_defparser/plain.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 PrefixDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:84 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ParserConfig.to_number pint/delegates/base_defparser.py:54 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile tokenize.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/delegates/txt_defparser/plain.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PrefixDefinition.__init__ :2 + │ │ │ │ │ │ │ │ │ │ ├─ 0.013 StatementIterator.peek flexparser/flexparser.py:699 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 StatementIterator._get_next flexparser/flexparser.py:687 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 StatementIterator._get_next_strip flexparser/flexparser.py:671 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 Spliter.__next__ flexparser/flexparser.py:532 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 len + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Statement.from_statement_iterator_element flexparser/flexparser.py:181 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ ├─ 0.010 PintRootBlock.body_classes flexparser/flexparser.py:945 + │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 isclass inspect.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 isinstance + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 PintRootBlock.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 PintRootBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 RootBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Block._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ └─ 0.001 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ └─ 0.001 default_locator flexparser/flexparser.py:1430 + │ │ │ │ │ │ │ └─ 0.001 PosixPath.resolve pathlib.py:1064 + │ │ │ │ │ │ │ └─ 0.001 realpath posixpath.py:392 + │ │ │ │ │ │ │ └─ 0.001 PosixPath.__fspath__ pathlib.py:631 + │ │ │ │ │ │ │ └─ 0.001 PosixPath.__str__ pathlib.py:621 + │ │ │ │ │ │ ├─ 0.010 UnitRegistry._helper_dispatch_adder pint/facets/plain/registry.py:486 + │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._add_unit pint/facets/group/registry.py:84 + │ │ │ │ │ │ │ │ └─ 0.004 UnitRegistry._add_unit pint/facets/nonmultiplicative/registry.py:71 + │ │ │ │ │ │ │ │ └─ 0.004 UnitRegistry._add_unit pint/facets/plain/registry.py:571 + │ │ │ │ │ │ │ │ └─ 0.004 UnitRegistry._helper_adder pint/facets/plain/registry.py:501 + │ │ │ │ │ │ │ │ ├─ 0.003 UnitRegistry._helper_single_adder pint/facets/plain/registry.py:526 + │ │ │ │ │ │ │ │ │ ├─ 0.001 str.lower + │ │ │ │ │ │ │ │ │ ├─ 0.001 ChainMap.__setitem__ collections/__init__.py:1037 + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ ├─ 0.003 UnitRegistry._add_system pint/facets/system/registry.py:87 + │ │ │ │ │ │ │ │ └─ 0.003 System.from_definition pint/facets/system/objects.py:148 + │ │ │ │ │ │ │ │ └─ 0.003 UnitRegistry.get_root_units pint/facets/plain/registry.py:802 + │ │ │ │ │ │ │ │ ├─ 0.002 to_units_container pint/util.py:1031 + │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_units_as_container pint/facets/nonmultiplicative/registry.py:59 + │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_units_as_container pint/facets/plain/registry.py:1214 + │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._parse_units_as_container pint/facets/plain/registry.py:1228 + │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ └─ 0.002 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry.add_context pint/facets/context/registry.py:79 + │ │ │ │ │ │ │ │ └─ 0.002 Context.from_definition pint/facets/context/objects.py:168 + │ │ │ │ │ │ │ │ ├─ 0.001 Context.add_transformation pint/facets/context/objects.py:195 + │ │ │ │ │ │ │ │ │ └─ 0.001 WeakValueDictionary.__setitem__ weakref.py:165 + │ │ │ │ │ │ │ │ │ └─ 0.001 KeyedRef.__init__ weakref.py:353 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_dimensionality pint/facets/plain/registry.py:710 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 + │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._add_group pint/facets/group/registry.py:89 + │ │ │ │ │ │ │ └─ 0.001 Group.from_definition pint/facets/group/objects.py:196 + │ │ │ │ │ │ │ └─ 0.001 GroupDefinition.unit_names pint/facets/group/definitions.py:44 + │ │ │ │ │ │ └─ 0.001 DefParser.iter_parsed_project pint/delegates/txt_defparser/defparser.py:75 + │ │ │ │ │ │ └─ 0.001 ContextDefinition.derive_definition pint/delegates/txt_defparser/context.py:173 + │ │ │ │ │ │ └─ 0.001 ContextDefinition.__init__ :2 + │ │ │ │ │ │ └─ 0.001 ContextDefinition.__post_init__ pint/facets/context/definitions.py:118 + │ │ │ │ │ │ └─ 0.001 KeysView.__iter__ _collections_abc.py:885 + │ │ │ │ │ └─ 0.074 UnitRegistry._build_cache pint/facets/context/registry.py:119 + │ │ │ │ │ └─ 0.074 UnitRegistry._build_cache pint/facets/plain/registry.py:605 + │ │ │ │ │ ├─ 0.031 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ └─ 0.031 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ ├─ 0.030 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ ├─ 0.015 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ ├─ 0.013 str.startswith + │ │ │ │ │ │ │ └─ 0.002 ChainMap.__contains__ collections/__init__.py:1000 + │ │ │ │ │ │ │ └─ 0.002 collections/__init__.py:1001 + │ │ │ │ │ │ └─ 0.001 dict.fromkeys + │ │ │ │ │ ├─ 0.018 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 + │ │ │ │ │ │ ├─ 0.013 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ ├─ 0.012 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ ├─ 0.010 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ ├─ 0.009 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ │ ├─ 0.005 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__contains__ collections/__init__.py:1000 + │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__getitem__ pint/util.py:555 + │ │ │ │ │ │ ├─ 0.002 pint/facets/plain/registry.py:911 + │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 + │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ └─ 0.001 Number.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ └─ 0.001 ParserHelper.__len__ pint/util.py:552 + │ │ │ │ │ ├─ 0.013 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 + │ │ │ │ │ │ ├─ 0.010 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ ├─ 0.009 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ ├─ 0.008 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ │ ├─ 0.005 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitsContainer.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ │ └─ 0.003 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 str.startswith + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__init__ :2 + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__post_init__ pint/facets/plain/definitions.py:133 + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.keys _collections_abc.py:836 + │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 + │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:820 + │ │ │ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:574 + │ │ │ │ │ ├─ 0.004 solve_dependencies pint/util.py:305 + │ │ │ │ │ │ ├─ 0.002 pint/util.py:340 + │ │ │ │ │ │ ├─ 0.001 pint/util.py:329 + │ │ │ │ │ │ └─ 0.001 pint/util.py:331 + │ │ │ │ │ ├─ 0.003 ParserHelper.__eq__ pint/util.py:820 + │ │ │ │ │ │ └─ 0.003 ParserHelper.__eq__ pint/util.py:574 + │ │ │ │ │ │ ├─ 0.002 [self] pint/util.py + │ │ │ │ │ │ └─ 0.001 ParserHelper.__hash__ pint/util.py:561 + │ │ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py + │ │ │ │ │ ├─ 0.002 pint/facets/plain/registry.py:618 + │ │ │ │ │ │ ├─ 0.001 UnitsContainer.keys _collections_abc.py:836 + │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ └─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ └─ 0.001 OperationModeProfileTree ../device_planner/frbc/operation_mode_profile_tree.py:122 + │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 + │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ └─ 0.001 str.startswith + │ │ │ ├─ 0.003 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:1 + │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.001 ../device_planner/frbc/frbc_timestep.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_state.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 ../device_planner/frbc/s2_frbc_device_state.py:1 + │ │ │ │ │ │ └─ 0.001 S2FrbcDeviceState ../device_planner/frbc/s2_frbc_device_state.py:14 + │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_operation_mode_wrapper.py:1 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ └─ 0.001 S2FrbcDeviceStateWrapper ../device_planner/frbc/s2_frbc_device_state_wrapper.py:27 + │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ └─ 0.001 _remove_dups_flatten typing.py:267 + │ │ │ │ └─ 0.001 _deduplicate typing.py:253 + │ │ │ └─ 0.001 ../common/proposal.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../device_planner/device_planner_abstract.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../common/device_planner/device_plan.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../common/soc_profile.py:1 + │ │ │ └─ 0.001 SoCProfile ../common/soc_profile.py:7 + │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ ├─ 0.033 pytest/__init__.py:1 + │ │ │ └─ 0.033 _find_and_load :1022 + │ │ │ └─ 0.033 _find_and_load_unlocked :987 + │ │ │ └─ 0.033 _load_unlocked :664 + │ │ │ └─ 0.033 SourceFileLoader.exec_module :877 + │ │ │ ├─ 0.032 _call_with_frames_removed :233 + │ │ │ │ ├─ 0.010 _pytest/assertion/__init__.py:1 + │ │ │ │ │ └─ 0.010 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.009 _pytest/assertion/rewrite.py:1 + │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.006 _pytest/main.py:1 + │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.003 _pytest/nodes.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.003 _pytest/mark/__init__.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _pytest/mark/structures.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Mark _pytest/mark/structures.py:192 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _pytest/mark/expression.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ └─ 0.001 MarkMatcher.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ └─ 0.001 MarkMatcher.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ └─ 0.001 MarkMatcher._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ ├─ 0.001 CollectionArgument.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ └─ 0.001 CollectionArgument._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ └─ 0.001 CollectionArgument._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _pytest/runner.py:1 + │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ └─ 0.003 _handle_fromlist :1053 + │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.003 _pytest/assertion/util.py:1 + │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.003 _pytest/config/__init__.py:1 + │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _pytest/config/findpaths.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 iniconfig/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ └─ 0.001 _get_mixins_ enum.py:579 + │ │ │ │ │ │ └─ 0.001 _find_data_type enum.py:590 + │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ └─ 0.001 loads + │ │ │ │ ├─ 0.010 _pytest/_code/__init__.py:1 + │ │ │ │ │ └─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.010 _pytest/_code/code.py:1 + │ │ │ │ │ ├─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.002 pluggy/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.001 pluggy/_manager.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pluggy/_callers.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ └─ 0.001 pluggy/_hooks.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ ├─ 0.002 _pytest/_io/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.002 _pytest/_io/terminalwriter.py:1 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.002 _pytest/compat.py:1 + │ │ │ │ │ │ │ │ ├─ 0.001 _PytestWrapper.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ └─ 0.001 _PytestWrapper.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ └─ 0.001 _PytestWrapper._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ └─ 0.001 exceptiongroup/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ ├─ 0.002 ExceptionChainRepr.wrap dataclasses.py:1174 + │ │ │ │ │ │ └─ 0.002 ExceptionChainRepr._process_class dataclasses.py:881 + │ │ │ │ │ │ ├─ 0.001 [self] dataclasses.py + │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ └─ 0.001 _signature_bound_method inspect.py:1959 + │ │ │ │ │ │ └─ 0.001 Signature.replace inspect.py:3014 + │ │ │ │ │ └─ 0.001 ExceptionInfo.dataclass dataclasses.py:1156 + │ │ │ │ │ └─ 0.001 ExceptionInfo.wrap dataclasses.py:1174 + │ │ │ │ │ └─ 0.001 ExceptionInfo._process_class dataclasses.py:881 + │ │ │ │ │ └─ 0.001 ExceptionInfo._get_field dataclasses.py:722 + │ │ │ │ │ └─ 0.001 field dataclasses.py:367 + │ │ │ │ ├─ 0.003 _pytest/doctest.py:1 + │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _pytest/python.py:1 + │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ └─ 0.001 type.__new__ + │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ ├─ 0.003 _pytest/cacheprovider.py:1 + │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.003 _pytest/fixtures.py:1 + │ │ │ │ │ ├─ 0.002 FixtureFunctionMarker.wrap dataclasses.py:1174 + │ │ │ │ │ │ └─ 0.002 FixtureFunctionMarker._process_class dataclasses.py:881 + │ │ │ │ │ │ ├─ 0.001 FixtureFunctionMarker._get_field dataclasses.py:722 + │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 + │ │ │ │ │ │ │ └─ 0.001 Field.__init__ dataclasses.py:286 + │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ └─ 0.001 inspect.py:2969 + │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ ├─ 0.002 _pytest/legacypath.py:1 + │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.001 _pytest/pytester.py:1 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ └─ 0.001 stat + │ │ │ │ ├─ 0.002 _pytest/debugging.py:1 + │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.002 unittest/__init__.py:1 + │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.001 unittest/result.py:1 + │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ └─ 0.001 _pytest/logging.py:1 + │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ └─ 0.001 loads + │ │ └─ 0.002 ../planning_service_impl.py:1 + │ │ └─ 0.002 _find_and_load :1022 + │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ └─ 0.002 _load_unlocked :664 + │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ ├─ 0.001 ../root_planner.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../congestion_point_planner.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../common/joule_range_profile.py:1 + │ │ │ └─ 0.001 Element.dataclass dataclasses.py:1156 + │ │ │ └─ 0.001 Element.wrap dataclasses.py:1174 + │ │ │ └─ 0.001 Element._process_class dataclasses.py:881 + │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ └─ 0.001 ../cluster_plan.py:1 + │ │ └─ 0.001 _find_and_load :1022 + │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ └─ 0.001 _load_unlocked :664 + │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ └─ 0.001 ../cluster_target.py:1 + │ │ └─ 0.001 ClusterTarget ../cluster_target.py:12 + │ │ └─ 0.001 inner typing.py:306 + │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ └─ 0.001 inner typing.py:306 + │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 + │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ └─ 0.001 _is_dunder typing.py:935 + │ └─ 0.001 SourceFileLoader.get_code :950 + │ └─ 0.001 _compile_bytecode :670 + │ └─ 0.001 loads + ├─ 0.535 _call_with_frames_removed :233 + │ └─ 0.535 _find_and_load :1022 + │ └─ 0.535 _find_and_load_unlocked :987 + │ ├─ 0.303 _call_with_frames_removed :233 + │ │ └─ 0.303 _find_and_load :1022 + │ │ └─ 0.303 _find_and_load_unlocked :987 + │ │ ├─ 0.302 _call_with_frames_removed :233 + │ │ │ └─ 0.302 _find_and_load :1022 + │ │ │ └─ 0.302 _find_and_load_unlocked :987 + │ │ │ └─ 0.302 _load_unlocked :664 + │ │ │ └─ 0.302 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.302 _call_with_frames_removed :233 + │ │ │ └─ 0.302 flexmeasures_s2/__init__.py:1 + │ │ │ ├─ 0.217 _handle_fromlist :1053 + │ │ │ │ └─ 0.217 _call_with_frames_removed :233 + │ │ │ │ └─ 0.217 _find_and_load :1022 + │ │ │ │ └─ 0.217 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.217 _load_unlocked :664 + │ │ │ │ └─ 0.217 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.217 _call_with_frames_removed :233 + │ │ │ │ └─ 0.217 flexmeasures_s2/api/somedata.py:1 + │ │ │ │ └─ 0.217 _find_and_load :1022 + │ │ │ │ └─ 0.217 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.217 _load_unlocked :664 + │ │ │ │ └─ 0.217 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.217 _call_with_frames_removed :233 + │ │ │ │ └─ 0.217 flask_security/__init__.py:1 + │ │ │ │ └─ 0.217 _find_and_load :1022 + │ │ │ │ └─ 0.217 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.217 _load_unlocked :664 + │ │ │ │ └─ 0.217 SourceFileLoader.exec_module :877 + │ │ │ │ ├─ 0.216 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.089 flask_security/datastore.py:1 + │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.089 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.089 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.089 sqlalchemy/__init__.py:1 + │ │ │ │ │ │ ├─ 0.063 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.063 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.063 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.063 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.063 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.062 sqlalchemy/engine/__init__.py:1 + │ │ │ │ │ │ │ │ ├─ 0.056 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ └─ 0.056 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.056 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.056 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.056 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.056 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.056 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.056 sqlalchemy/engine/events.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.055 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 sqlalchemy/engine/base.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.054 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.054 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.054 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.054 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.053 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 sqlalchemy/engine/interfaces.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.046 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 sqlalchemy/sql/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.038 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 sqlalchemy/sql/compiler.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 sqlalchemy/sql/crud.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 sqlalchemy/sql/dml.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 sqlalchemy/sql/util.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 sqlalchemy/sql/schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 sqlalchemy/sql/selectable.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/sql/sqltypes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/sqltypes.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HasExpressionLookup sqlalchemy/sql/sqltypes.py:84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Comparator.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/selectable.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerativeSelect sqlalchemy/sql/selectable.py:3864 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Values sqlalchemy/sql/selectable.py:3251 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 AliasedReturnsRows sqlalchemy/sql/selectable.py:1656 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Select sqlalchemy/sql/selectable.py:5167 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ScalarSelect sqlalchemy/sql/selectable.py:6619 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Table sqlalchemy/sql/schema.py:315 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CheckConstraint sqlalchemy/sql/schema.py:4462 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:2103 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inject_param_text sqlalchemy/util/langhelpers.py:2148 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 sqlalchemy/sql/ddl.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 sqlalchemy/sql/elements.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] sqlalchemy/sql/elements.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/type_api.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeDecorator sqlalchemy/sql/type_api.py:1498 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Comparator.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/util/topological.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/annotation.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ValuesBase sqlalchemy/sql/dml.py:957 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 sqlalchemy/sql/functions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 OrderedSetAgg.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] sqlalchemy/sql/functions.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SQLCompiler sqlalchemy/sql/compiler.py:1033 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__and__ enum.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 sqlalchemy/sql/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/visitors.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColumnMetrics.__init_subclass__ typing.py:1350 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/sql/_typing.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _HasDialect.__init__ typing_extensions.py:595 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _HasDialect._get_protocol_attrs typing_extensions.py:518 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/sql/expression.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/lambdas.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 __go sqlalchemy/sql/__init__.py:111 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _prepare_annotations sqlalchemy/sql/annotation.py:580 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 current_timestamp._new_annotation_type sqlalchemy/sql/annotation.py:533 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/naming.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Events.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/pool/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/pool/events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/pool/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolResetState.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolResetState._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/pool/impl.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/api.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/attr.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/legacy.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/registry.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __prepare__ enum.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _check_for_existing_members enum.py:569 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Connection sqlalchemy/engine/base.py:87 + │ │ │ │ │ │ │ │ │ └─ 0.001 ConnectionEvents.__init_subclass__ sqlalchemy/event/base.py:240 + │ │ │ │ │ │ │ │ │ └─ 0.001 ConnectionEvents._create_dispatcher_class sqlalchemy/event/base.py:278 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ClsLevelDispatch.__init__ sqlalchemy/event/attr.py:135 + │ │ │ │ │ │ │ │ │ └─ 0.001 _augment_fn_docs sqlalchemy/event/legacy.py:220 + │ │ │ │ │ │ │ │ │ └─ 0.001 inject_docstring_text sqlalchemy/util/langhelpers.py:2125 + │ │ │ │ │ │ │ │ │ └─ 0.001 _dedent_docstring sqlalchemy/util/langhelpers.py:2113 + │ │ │ │ │ │ │ │ │ └─ 0.001 dedent textwrap.py:422 + │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/engine/cursor.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/engine/result.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ ├─ 0.001 sqlalchemy/engine/reflection.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Inspector sqlalchemy/engine/reflection.py:181 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 + │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/create.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:224 + │ │ │ │ │ │ │ │ │ └─ 0.001 inject_param_text sqlalchemy/util/langhelpers.py:2148 + │ │ │ │ │ │ │ │ │ └─ 0.001 str.splitlines + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/schema.py:1 + │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ ├─ 0.025 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.025 sqlalchemy/util/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.018 sqlalchemy/util/concurrency.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.015 asyncio/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 loads + │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 asyncio/base_events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 asyncio/events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/sslproto.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/threads.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 greenlet/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/util/_concurrency_py3k.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/util/langhelpers.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 symbol sqlalchemy/util/langhelpers.py:1595 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ └─ 0.006 sqlalchemy/util/_collections.py:1 + │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/util/typing.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 typing_extensions.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing_extensions.py + │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/util/_has_cy.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _import_cy_extensions sqlalchemy/util/_has_cy.py:13 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/exc.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 + │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ └─ 0.001 Protocol.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ └─ 0.001 __go sqlalchemy/__init__.py:275 + │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/default.py:1 + │ │ │ │ │ │ └─ 0.001 DefaultDialect sqlalchemy/engine/default.py:115 + │ │ │ │ │ ├─ 0.072 flask_security/core.py:1 + │ │ │ │ │ │ └─ 0.072 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.072 _find_and_load_unlocked :987 + │ │ │ │ │ │ ├─ 0.071 _load_unlocked :664 + │ │ │ │ │ │ │ ├─ 0.070 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.069 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.057 flask_security/totp.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.051 passlib/pwd.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 pkg_resources/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _call_aside pkg_resources/__init__.py:3655 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _initialize_master_working_set pkg_resources/__init__.py:3672 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 WorkingSet._build_master pkg_resources/__init__.py:647 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.__init__ pkg_resources/__init__.py:633 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.add_entry pkg_resources/__init__.py:689 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 find_on_path pkg_resources/__init__.py:2326 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 distributions_from_metadata pkg_resources/__init__.py:2397 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 safe_name pkg_resources/__init__.py:1560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sub re.py:202 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 splitext posixpath.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lower + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 listdir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isdir genericpath.py:39 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pkg_resources/__init__.py:2337 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_sep posixpath.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WorkingSet.add pkg_resources/__init__.py:773 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution.key pkg_resources/__init__.py:3001 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution.__getattr__ pkg_resources/__init__.py:3182 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 WorkingSet.add_entry pkg_resources/__init__.py:689 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 find_on_path pkg_resources/__init__.py:2326 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 distributions_from_metadata pkg_resources/__init__.py:2397 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 safe_version pkg_resources/__init__.py:1568 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Version.__init__ packaging/version.py:188 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DistInfoDistribution._reload_version pkg_resources/__init__.py:2959 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 splitext posixpath.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _splitext genericpath.py:121 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 listdir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pkg_resources/__init__.py:2337 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dist_factory pkg_resources/__init__.py:2346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pkg_resources/__init__.py:3697 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 DistInfoDistribution.activate pkg_resources/__init__.py:3145 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 DistInfoDistribution._get_metadata pkg_resources/__init__.py:3137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathMetadata.has_metadata pkg_resources/__init__.py:1690 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathMetadata._get_metadata_path pkg_resources/__init__.py:1687 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PathMetadata._fn pkg_resources/__init__.py:1771 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_resource_path pkg_resources/__init__.py:1781 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isabs ntpath.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution.insert_on pkg_resources/__init__.py:3240 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dirname posixpath.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_sep posixpath.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 packaging/markers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 packaging/_parser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 packaging/_tokenizer.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 packaging/specifiers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 packaging/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 packaging/version.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Version packaging/version.py:161 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/tags.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/_manylinux.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Specifier packaging/specifiers.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] sre_parse.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sre_parse.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hash + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 jaraco/text/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 jaraco/functools/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 more_itertools/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 jaraco/context.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 backports/tarfile/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib/resources.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WordSet jaraco/text/__init__.py:258 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 plistlib.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution pkg_resources/__init__.py:3383 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.007 passlib/totp.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cryptography/hazmat/primitives/ciphers/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cryptography/hazmat/primitives/ciphers/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/modes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/algorithms.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_new_ enum.py:626 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ ├─ 0.010 passlib/context.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/registry.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/ifc.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 passlib/utils/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 crypt.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _add_method crypt.py:88 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt crypt.py:70 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 passlib/utils/binary.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 passlib/utils/decor.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] passlib/utils/__init__.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unpack_uint32 :84 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _LazyOverlayModule.__getattr__ passlib/utils/compat/__init__.py:437 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _import_object passlib/utils/compat/__init__.py:406 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 configparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LegacyInterpolation configparser.py:523 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ ├─ 0.001 flask_security/oauth_glue.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.__init__ :71 + │ │ │ │ │ │ │ │ │ └─ 0.001 flask_security/webauthn_util.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 + │ │ │ │ │ ├─ 0.032 flask_security/changeable.py:1 + │ │ │ │ │ │ └─ 0.032 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.032 _find_and_load_unlocked :987 + │ │ │ │ │ │ ├─ 0.031 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.031 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.030 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.029 flask_security/utils.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.029 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.029 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.028 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 flask_wtf/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.023 flask_wtf/form.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 flask_wtf/i18n.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 babel/support.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 babel/dates.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 babel/localtime/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 get_localzone babel/localtime/__init__.py:32 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _get_localzone babel/localtime/_unix.py:24 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _get_tzinfo babel/localtime/_helpers.py:12 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 timezone pytz/__init__.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 LazySet._lazy pytz/lazy.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 LazyList._lazy pytz/lazy.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 pytz/__init__.py:1114 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 resource_exists pytz/__init__.py:111 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 open_resource pytz/__init__.py:78 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 open + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 dirname posixpath.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] posixpath.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 exists genericpath.py:16 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 BufferedReader.close + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] babel/localtime/_helpers.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/localtime/_unix.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/localtime/_helpers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 zoneinfo/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 zoneinfo/_tzpath.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 reset_tzpath zoneinfo/_tzpath.py:5 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_var sysconfig.py:659 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_vars sysconfig.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_makefile_filename sysconfig.py:389 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_path sysconfig.py:567 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_paths sysconfig.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _expand_vars sysconfig.py:214 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extend_dict sysconfig.py:206 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pytz/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 LazyList.__new__ pytz/lazy.py:84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/numbers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__and__ enum.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 babel/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/core.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/plural.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__init__ sre_parse.py:112 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ └─ 0.005 flask_wtf/csrf.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 wtforms/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 wtforms/fields/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/fields/choices.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HostnameValidation wtforms/validators.py:640 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BuiltinImporter.find_spec :746 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ └─ 0.001 flask_login/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ └─ 0.022 flask_security/change_email.py:1 + │ │ │ │ │ └─ 0.022 _find_and_load :1022 + │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.022 _load_unlocked :664 + │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.022 flask_security/forms.py:1 + │ │ │ │ │ ├─ 0.021 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ ├─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.019 flask_security/mail_util.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.019 email_validator/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.019 email_validator/validate_email.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.019 email_validator/syntax.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.018 email_validator/rfc_constants.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.018 compile re.py:249 + │ │ │ │ │ │ │ │ │ └─ 0.018 _compile re.py:288 + │ │ │ │ │ │ │ │ │ └─ 0.018 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ ├─ 0.017 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ ├─ 0.010 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ └─ 0.007 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ └─ 0.007 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.tell sre_parse.py:287 + │ │ │ │ │ │ │ │ └─ 0.001 idna/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 idna/core.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ └─ 0.001 flask_security/babel.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 importlib_resources/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ └─ 0.001 [self] flask_security/forms.py + │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ ├─ 0.078 _find_and_load :1022 + │ │ │ │ └─ 0.078 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.078 _load_unlocked :664 + │ │ │ │ └─ 0.078 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.078 _call_with_frames_removed :233 + │ │ │ │ ├─ 0.076 flask/__init__.py:1 + │ │ │ │ │ ├─ 0.040 _handle_fromlist :1053 + │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.040 flask/json/__init__.py:1 + │ │ │ │ │ │ └─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ ├─ 0.039 flask/globals.py:1 + │ │ │ │ │ │ │ └─ 0.039 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.039 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ ├─ 0.038 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.038 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.038 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.038 _load_unlocked :664 + │ │ │ │ │ │ │ │ ├─ 0.037 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.037 werkzeug/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.031 werkzeug/serving.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ ├─ 0.030 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.030 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 http/server.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 http/client.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ssl.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 IntFlag._convert_ enum.py:536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 IntFlag.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntFlag._create_ enum.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_new_ enum.py:626 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:553 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 email/message.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/parser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/feedparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 email/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 email/charset.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :134 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/quoprimime.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/_parseaddr.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _verbose_message :244 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 html/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 mimetypes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 werkzeug/urls.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 werkzeug/datastructures/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 werkzeug/datastructures/accept.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 werkzeug/datastructures/structures.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 werkzeug/http.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 urllib/request.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hashlib.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __get_openssl_constructor hashlib.py:126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __get_builtin_constructor hashlib.py:82 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/sansio/http.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _class_escape sre_parse.py:296 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrozenImporter.find_spec :826 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_frozen + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 werkzeug/datastructures/range.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/datastructures/cache_control.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 zipimporter.__init__ :64 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _make_unquote_part werkzeug/urls.py:29 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 werkzeug/_internal.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 logging/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 traceback.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 StrFormatStyle logging/__init__.py:445 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 socket.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 IntEnum._convert_ enum.py:536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 enum.py:553 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 socket.py:78 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isupper + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 socket.py:93 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isupper + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 http/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ └─ 0.006 werkzeug/test.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 werkzeug/sansio/multipart.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 File.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 File._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 File._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/utils.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/security.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 cb :198 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.002 werkzeug/wrappers/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.001 werkzeug/wrappers/response.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistutilsMetaFinder.find_spec _distutils_hack/__init__.py:102 + │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/wrappers/request.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ └─ 0.001 flask/json/provider.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 decimal.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ └─ 0.036 _find_and_load :1022 + │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.036 _load_unlocked :664 + │ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.036 flask/app.py:1 + │ │ │ │ │ ├─ 0.030 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.030 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.030 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.030 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.030 _call_with_frames_removed :233 + │ │ │ │ │ │ ├─ 0.017 flask/sansio/app.py:1 + │ │ │ │ │ │ │ ├─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.015 flask/templating.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.015 jinja2/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ ├─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.013 jinja2/environment.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 jinja2/lexer.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/_identifier.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 jinja2/defaults.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/filters.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/runtime.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/compiler.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CodeGenerator jinja2/compiler.py:300 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _verbose_message :244 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 jinja2/nodes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ jinja2/nodes.py:59 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] jinja2/nodes.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__init__ sre_parse.py:112 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Environment jinja2/environment.py:144 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing.py:206 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/bccache.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pickle.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ └─ 0.001 App flask/sansio/app.py:59 + │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ └─ 0.001 str.endswith + │ │ │ │ │ │ ├─ 0.007 click/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.005 click/core.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 click/types.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 click/exceptions.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BadParameter click/exceptions.py:94 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 click/_compat.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1234 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ ├─ 0.001 Group click/core.py:1790 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 click/formatting.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 click/parser.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 click/decorators.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 + │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ ├─ 0.004 werkzeug/routing/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.003 werkzeug/routing/map.py:1 + │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/matcher.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/routing/rules.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] werkzeug/routing/matcher.py + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ └─ 0.001 werkzeug/routing/exceptions.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ ├─ 0.001 flask/wrappers.py:1 + │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ └─ 0.001 flask/sessions.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 itsdangerous/__init__.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 itsdangerous/serializer.py:1 + │ │ │ │ │ │ └─ 0.001 _GenericAlias.__mro_entries__ typing.py:1107 + │ │ │ │ │ └─ 0.006 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.004 flask/cli.py:1 + │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ ├─ 0.003 importlib/metadata/__init__.py:1 + │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 csv.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 importlib/metadata/_adapters.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 flask/helpers.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 flask/signals.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 blinker/__init__.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.002 flask/typing.py:1 + │ │ │ │ │ └─ 0.002 inner typing.py:306 + │ │ │ │ │ ├─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ └─ 0.002 importlib_metadata/__init__.py:1 + │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ └─ 0.007 version importlib_metadata/__init__.py:1020 + │ │ │ ├─ 0.006 distribution importlib_metadata/__init__.py:994 + │ │ │ │ └─ 0.006 Distribution.from_name importlib_metadata/__init__.py:411 + │ │ │ │ └─ 0.006 bucket._get_values importlib_metadata/_itertools.py:133 + │ │ │ │ ├─ 0.004 importlib_metadata/__init__.py:930 + │ │ │ │ │ └─ 0.004 FastPath.search importlib_metadata/__init__.py:789 + │ │ │ │ │ └─ 0.004 FastPath.wrapper importlib_metadata/_functools.py:75 + │ │ │ │ │ └─ 0.004 FastPath.lookup importlib_metadata/__init__.py:798 + │ │ │ │ │ └─ 0.004 Lookup.__init__ importlib_metadata/__init__.py:808 + │ │ │ │ │ ├─ 0.002 FastPath.children importlib_metadata/__init__.py:772 + │ │ │ │ │ │ ├─ 0.001 listdir + │ │ │ │ │ │ └─ 0.001 FastPath.zip_children importlib_metadata/__init__.py:779 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ ├─ 0.001 FastPath.joinpath importlib_metadata/__init__.py:769 + │ │ │ │ │ │ └─ 0.001 PosixPath.__new__ pathlib.py:957 + │ │ │ │ │ │ └─ 0.001 PosixPath._from_parts pathlib.py:589 + │ │ │ │ │ └─ 0.001 normalize importlib_metadata/__init__.py:884 + │ │ │ │ │ └─ 0.001 sub re.py:202 + │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ └─ 0.002 importlib_metadata/__init__.py:456 + │ │ │ │ └─ 0.002 PathDistribution.metadata importlib_metadata/__init__.py:476 + │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 importlib_metadata/_adapters.py:1 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 email/policy.py:1 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 email/headerregistry.py:1 + │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 email/_header_value_parser.py:1 + │ │ │ │ ├─ 0.001 [self] email/_header_value_parser.py + │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ └─ 0.001 State.groups sre_parse.py:82 + │ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 + │ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 + │ │ │ └─ 0.001 message_from_string email/__init__.py:32 + │ │ │ └─ 0.001 Parser.parsestr email/parser.py:59 + │ │ │ └─ 0.001 Parser.parse email/parser.py:41 + │ │ │ └─ 0.001 FeedParser.feed email/feedparser.py:173 + │ │ │ └─ 0.001 FeedParser._call_parse email/feedparser.py:178 + │ │ │ └─ 0.001 FeedParser._parsegen email/feedparser.py:218 + │ │ │ └─ 0.001 BufferedSubFile.__next__ email/feedparser.py:128 + │ │ └─ 0.001 _load_unlocked :664 + │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ └─ 0.001 s2python/__init__.py:1 + │ │ └─ 0.001 version importlib/metadata/__init__.py:989 + │ │ └─ 0.001 distribution importlib/metadata/__init__.py:963 + │ │ └─ 0.001 Distribution.from_name importlib/metadata/__init__.py:532 + │ │ └─ 0.001 importlib_metadata/__init__.py:930 + │ │ └─ 0.001 FastPath.search importlib_metadata/__init__.py:789 + │ │ └─ 0.001 Lookup.search importlib_metadata/__init__.py:837 + │ │ └─ 0.001 FreezableDefaultDict.__missing__ importlib_metadata/_collections.py:20 + │ └─ 0.232 _load_unlocked :664 + │ └─ 0.232 SourceFileLoader.exec_module :877 + │ └─ 0.232 _call_with_frames_removed :233 + │ ├─ 0.231 s2python/frbc/__init__.py:1 + │ │ └─ 0.231 _find_and_load :1022 + │ │ └─ 0.231 _find_and_load_unlocked :987 + │ │ └─ 0.231 _load_unlocked :664 + │ │ └─ 0.231 SourceFileLoader.exec_module :877 + │ │ └─ 0.231 _call_with_frames_removed :233 + │ │ ├─ 0.205 s2python/frbc/frbc_fill_level_target_profile_element.py:1 + │ │ │ ├─ 0.185 _find_and_load :1022 + │ │ │ │ └─ 0.185 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.185 _load_unlocked :664 + │ │ │ │ └─ 0.185 SourceFileLoader.exec_module :877 + │ │ │ │ ├─ 0.184 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.183 s2python/common/__init__.py:1 + │ │ │ │ │ │ └─ 0.183 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.183 _find_and_load_unlocked :987 + │ │ │ │ │ │ ├─ 0.181 _load_unlocked :664 + │ │ │ │ │ │ │ ├─ 0.180 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.179 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.131 s2python/generated/gen_s2.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.077 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.047 DDBCActuatorDescription.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 get_type_ref pydantic/_internal/_core_utils.py:69 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 display_as_type pydantic/_internal/_repr.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PPBCPowerSequenceStatus.lenient_issubclass pydantic/_internal/_utils.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseModel.__subclasscheck__ abc.py:121 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.__subclasscheck__ abc.py:121 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_subclasscheck + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._add_js_function pydantic/_internal/_generate_schema.py:564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._list_schema pydantic/_internal/_generate_schema.py:366 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._apply_single_annotation pydantic/_internal/_generate_schema.py:2062 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 apply_known_metadata pydantic/_internal/_known_annotated_metadata.py:167 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_known_metadata pydantic/_internal/_known_annotated_metadata.py:331 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GroupedMetadata.__instancecheck__ typing.py:1490 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1506 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._config_wrapper pydantic/_internal/_generate_schema.py:352 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 update_core_metadata pydantic/_internal/_core_metadata.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_metadata.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _apply_field_title_generator_to_field_info pydantic/_internal/_generate_schema.py:1195 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dict.values + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_json_schema_info_from_field_info pydantic/_internal/_generate_schema.py:259 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 to_jsonable_python + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 definition_reference_schema pydantic_core/core_schema.py:3851 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dict_not_none pydantic_core/core_schema.py:4108 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 simplify_schema_references pydantic/_internal/_core_utils.py:442 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._copy_schema pydantic/_internal/_core_utils.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_definitions pydantic/_internal/_core_utils.py:114 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._copy_schema pydantic/_internal/_core_utils.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 validate_core_schema pydantic/_internal/_core_utils.py:607 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 validate_core_schema + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 create_schema_validator pydantic/plugin/_schema_validator.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 [self] pydantic/plugin/_schema_validator.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DynamicClassAttribute.__get__ types.py:176 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 SelectControlType.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 SelectControlType.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 eval_type_backport pydantic/_internal/_typing_extra.py:593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _eval_type_backport pydantic/_internal/_typing_extra.py:626 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _eval_type pydantic/_internal/_typing_extra.py:656 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _eval_type typing.py:320 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ForwardRef._evaluate typing.py:679 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _LiteralSpecialForm.__getitem__ typing.py:407 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LazyLocalNamespace.__getitem__ pydantic/_internal/_namespace_utils.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LazyLocalNamespace.data pydantic/_internal/_namespace_utils.py:89 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__eq__ typing.py:1278 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_typing_extra.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 from_annotated_attribute pydantic/fields.py:342 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/fields.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 merge_field_infos pydantic/fields.py:427 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/fields.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 any + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/_internal/_fields.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 is_classvar_annotation pydantic/_internal/_typing_extra.py:244 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_classvar pydantic/_internal/_typing_extra.py:224 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _SpecialGenericAlias.__instancecheck__ typing.py:993 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _warn_on_nested_alias_in_annotation pydantic/_internal/_fields.py:253 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_annotated pydantic/_internal/_typing_extra.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_finalvar_with_default_val pydantic/_internal/_fields.py:269 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_finalvar pydantic/_internal/_typing_extra.py:273 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inspect_namespace pydantic/_internal/_model_construction.py:357 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pydantic/_internal/_model_construction.py + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NsResolver.__init__ pydantic/_internal/_namespace_utils.py:227 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ ├─ 0.042 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 __getattr__ pydantic/__init__.py:402 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 import_module importlib/__init__.py:108 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 _gcd_import :1038 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 pydantic/root_model.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 RootModel.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 validate_core_schema pydantic/_internal/_core_utils.py:607 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 validate_core_schema + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 create_schema_validator pydantic/plugin/_schema_validator.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 get_plugins pydantic/plugin/_loader.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 PathDistribution.entry_points importlib_metadata/__init__.py:516 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 PathDistribution.read_text importlib_metadata/__init__.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PosixPath.joinpath pathlib.py:845 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath._make_child pathlib.py:615 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath._parse_args pathlib.py:569 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.read_text pathlib.py:1129 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EntryPoints._from_text_for importlib_metadata/__init__.py:321 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib_metadata/__init__.py:323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib_metadata/__init__.py:327 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib_metadata/__init__.py:114 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 read importlib_metadata/__init__.py:120 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathDistribution.__init__ importlib_metadata/__init__.py:940 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 RootModel.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_std_types_schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MappingValidator.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MappingValidator._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__str__ inspect.py:3206 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_model_construction.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 pydantic/types.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 annotated_types/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Timezone.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Timezone._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Timezone._hash_add dataclasses.py:842 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Lt._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MultipleOf annotated_types/__init__.py:229 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Annotated.__class_getitem__ typing.py:1695 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1621 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/json_schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :134 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/_internal/_fields.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_config.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/aliases.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasPath.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasPath._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/config.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 StringConstraints.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 StringConstraints._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Discriminator.update_abstractmethods abc.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Annotated.__class_getitem__ typing.py:1695 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1621 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SecretBase.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/main.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_model_construction.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_model_construction.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Decorator.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/fields.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 RootModel.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._annotated_schema pydantic/_internal/_generate_schema.py:1969 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 generic_recursion_self_type pydantic/_internal/_generics.py:404 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PEBCAllowedLimitRange s2python/generated/gen_s2.py:1048 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_metadata pydantic/fields.py:536 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Currency s2python/generated/gen_s2.py:30 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecast s2python/generated/gen_s2.py:1284 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Timer s2python/generated/gen_s2.py:223 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 InstructionStatusUpdate s2python/generated/gen_s2.py:574 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PPBCStartInterruptionInstruction s2python/generated/gen_s2.py:655 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/fields.py:209 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PEBCPowerEnvelope s2python/generated/gen_s2.py:1069 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ResourceManagerDetails s2python/generated/gen_s2.py:1212 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecastElement s2python/generated/gen_s2.py:1035 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 EnergyManagementRole s2python/generated/gen_s2.py:154 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder enum.py:22 + │ │ │ │ │ │ │ │ │ ├─ 0.017 s2python/common/duration.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ ├─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 s2python/validate_values_mixin.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 pydantic/v1/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 pydantic/v1/dataclasses.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 pydantic/v1/error_wrappers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 pydantic/v1/json.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 pydantic/v1/networks.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/datetime_parse.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IPvAnyInterface pydantic/v1/networks.py:656 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/types.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConstrainedStr pydantic/v1/types.py:405 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/v1/json.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/v1/class_validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/v1/errors.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/main.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 contextmanager contextlib.py:252 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/env_settings.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/v1/main.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 s2python/s2_validation_error.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2ValidationError.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2ValidationError.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2ValidationError._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ ├─ 0.004 s2python/common/transition.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Transition.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Transition.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Duration.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type_backport pydantic/_internal/_typing_extra.py:626 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type pydantic/_internal/_typing_extra.py:656 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef._evaluate typing.py:679 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_class types.py:100 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ ├─ 0.004 s2python/common/resource_manager_details.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ResourceManagerDetails.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_dataclass dataclasses.py:1210 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ResourceManagerDetails.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ResourceManagerDetails.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/revoke_object.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 RevokeObject.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecast.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/timer.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.get_model_typevars_map pydantic/_internal/_generics.py:237 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/session_request.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[SessionRequest].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.collect_definitions pydantic/_internal/_generate_schema.py:553 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cast typing.py:1737 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SessionRequest.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SessionRequest.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast_element.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.for_model pydantic/_internal/_config.py:99 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__init__ pydantic/_internal/_config.py:93 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_config pydantic/_internal/_config.py:282 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_deprecated pydantic/_internal/_config.py:332 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast_value.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecastValue.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 hash + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/handshake_response.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 DecoratorInfos.__init__ :2 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_measurement.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerMeasurement.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerMeasurement.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/role.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Role.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_value.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/handshake.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/reception_status.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/instruction_status_update.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__init__ pydantic/_internal/_schema_generation_shared.py:73 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/number_range.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRange.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRange.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_range.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get + │ │ │ │ │ │ │ │ │ └─ 0.001 s2python/common/select_control_type.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _classify_pyc :585 + │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ └─ 0.002 _find_spec :921 + │ │ │ │ │ │ ├─ 0.001 _ImportLockContext.__enter__ :893 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ └─ 0.001 pydantic/__init__.py:1 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ └─ 0.001 loads + │ │ │ ├─ 0.018 _handle_fromlist :1053 + │ │ │ │ └─ 0.018 __getattr__ pydantic/__init__.py:402 + │ │ │ │ └─ 0.018 import_module importlib/__init__.py:108 + │ │ │ │ └─ 0.018 _gcd_import :1038 + │ │ │ │ └─ 0.018 _find_and_load :1022 + │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.018 _load_unlocked :664 + │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.018 _call_with_frames_removed :233 + │ │ │ │ └─ 0.018 pydantic/functional_validators.py:1 + │ │ │ │ ├─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.010 pydantic_core/__init__.py:1 + │ │ │ │ │ └─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ ├─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.008 pydantic_core/core_schema.py:1 + │ │ │ │ │ │ ├─ 0.007 _TypedDictMeta.__new__ typing_extensions.py:916 + │ │ │ │ │ │ │ ├─ 0.003 typing_extensions.py:954 + │ │ │ │ │ │ │ │ └─ 0.003 _type_check typing.py:146 + │ │ │ │ │ │ │ │ ├─ 0.002 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ ├─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py + │ │ │ │ │ │ │ ├─ 0.002 type.__new__ + │ │ │ │ │ │ │ ├─ 0.001 hasattr + │ │ │ │ │ │ │ └─ 0.001 _get_typeddict_qualifiers typing_extensions.py:894 + │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.__getitem__ typing.py:407 + │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.Literal typing.py:532 + │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ └─ 0.001 str.endswith + │ │ │ │ │ └─ 0.002 module_from_spec :564 + │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.002 create_dynamic + │ │ │ │ ├─ 0.006 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.005 pydantic/_internal/_decorators.py:1 + │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/_internal/_utils.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_import_utils.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 + │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_core_utils.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_repr.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 Representation pydantic/_internal/_repr.py:29 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ ├─ 0.001 FieldValidatorDecoratorInfo.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ └─ 0.001 FieldValidatorDecoratorInfo._process_class dataclasses.py:881 + │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.dataclass dataclasses.py:1156 + │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.wrap dataclasses.py:1174 + │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy._process_class dataclasses.py:881 + │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ └─ 0.001 loads + │ │ │ │ └─ 0.002 AfterValidator.wrap dataclasses.py:1174 + │ │ │ │ └─ 0.002 AfterValidator._process_class dataclasses.py:881 + │ │ │ │ └─ 0.002 AfterValidator._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._config_wrapper pydantic/_internal/_generate_schema.py:352 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 S2MessageComponent[FRBCFillLevelTargetProfileElement].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ ├─ 0.004 s2python/frbc/frbc_actuator_description.py:1 + │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ ├─ 0.002 FRBCActuatorDescription.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ │ │ │ └─ 0.001 collect_definitions pydantic/_internal/_core_utils.py:114 + │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ └─ 0.001 FRBCActuatorDescription.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ └─ 0.001 FRBCActuatorDescription.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ └─ 0.001 FRBCActuatorDescription.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ └─ 0.001 FieldInfo.__reduce_ex__ + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 s2python/common/support.py:1 + │ │ ├─ 0.003 s2python/frbc/frbc_usage_forecast_element.py:1 + │ │ │ ├─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.002 FRBCUsageForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ ├─ 0.001 FRBCUsageForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 pydantic/main.py:785 + │ │ ├─ 0.002 s2python/frbc/frbc_fill_level_target_profile.py:1 + │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 + │ │ │ │ └─ 0.001 generic_recursion_self_type pydantic/_internal/_generics.py:404 + │ │ │ │ └─ 0.001 ContextVar.reset + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ └─ 0.001 model_field pydantic_core/core_schema.py:2974 + │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCOperationMode.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 FRBCOperationMode.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ └─ 0.001 helper contextlib.py:279 + │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ ├─ 0.002 s2python/frbc/frbc_instruction.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCInstruction.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ ├─ 0.002 s2python/frbc/frbc_storage_status.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCStorageStatus.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 pydantic/main.py:785 + │ │ │ └─ 0.001 iter_contained_typevars pydantic/_internal/_generics.py:187 + │ │ │ └─ 0.001 iter_contained_typevars pydantic/_internal/_generics.py:187 + │ │ ├─ 0.002 s2python/frbc/frbc_actuator_status.py:1 + │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ ├─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ │ └─ 0.001 FRBCActuatorStatus.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCActuatorStatus.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 model_fields_schema pydantic_core/core_schema.py:3027 + │ │ │ └─ 0.001 _dict_not_none pydantic_core/core_schema.py:4108 + │ │ │ └─ 0.001 pydantic_core/core_schema.py:4109 + │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode_element.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCOperationModeElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 FRBCOperationModeElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ ├─ 0.002 s2python/frbc/frbc_system_description.py:1 + │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.002 FRBCSystemDescription.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ ├─ 0.001 FRBCSystemDescription.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ └─ 0.001 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 + │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ ├─ 0.001 s2python/frbc/frbc_timer_status.py:1 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 S2MessageComponent[FRBCTimerStatus].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 S2MessageComponent[FRBCTimerStatus].__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ ├─ 0.001 s2python/frbc/frbc_usage_forecast.py:1 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCUsageForecast.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCUsageForecast.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ └─ 0.001 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 + │ │ │ └─ 0.001 _LiteralGenericAlias.__hash__ typing.py:1284 + │ │ ├─ 0.001 s2python/frbc/frbc_storage_description.py:1 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCStorageDescription.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ └─ 0.001 FRBCStorageDescription.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ ├─ 0.001 s2python/frbc/frbc_leakage_behaviour_element.py:1 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCLeakageBehaviourElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCLeakageBehaviourElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 + │ │ └─ 0.001 s2python/frbc/frbc_leakage_behaviour.py:1 + │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ └─ 0.001 FRBCLeakageBehaviour.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ └─ 0.001 FRBCLeakageBehaviour.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ └─ 0.001 NsResolver.types_namespace pydantic/_internal/_namespace_utils.py:236 + │ └─ 0.001 exec + └─ 0.001 _find_spec :921 + └─ 0.001 PathFinder.find_spec :1431 + └─ 0.001 PathFinder._get_spec :1399 + └─ 0.001 PathFinder._path_importer_cache :1356 + └─ 0.001 _path_hooks :1343 + └─ 0.001 zipimporter.__init__ :64 + +To view this report with different options, run: + pyinstrument --load-prev 2025-04-03T16-11-14 [options] + diff --git a/flexmeasures_s2/profile_steering/tests/test.txt b/flexmeasures_s2/profile_steering/tests/test.txt new file mode 100644 index 0000000..1dcf3d9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/test.txt @@ -0,0 +1,69387 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery1: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery2: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18810000, 10260000, 10260000, 10260000, 10260000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery3: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28215000, 15390000, 15390000, 15390000, 15390000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery4: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37620000, 20520000, 20520000, 20520000, 20520000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery5: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47025000, 25650000, 25650000, 25650000, 25650000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery6: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56430000, 30780000, 30780000, 30780000, 30780000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery7: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65835000, 35910000, 35910000, 35910000, 35910000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery8: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75240000, 41040000, 41040000, 41040000, 41040000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery9: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84645000, 46170000, 46170000, 46170000, 46170000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery10: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94050000, 51300000, 51300000, 51300000, 51300000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Current planning is within the congestion target range. Returning it. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery10' with improvement of 5.287368307500032e+16. +Root controller: selected best controller 'battery10' with global energy impr 5.287368307500032e+16, congestion impr 0.0, iteration 1. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery9' with improvement of 4.405210942499994e+16. +Root controller: selected best controller 'battery9' with global energy impr 4.405210942499994e+16, congestion impr 0.0, iteration 2. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 15390000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 15390000, 10260000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery8' with improvement of 3.673598557500006e+16. +Root controller: selected best controller 'battery8' with global energy impr 3.673598557500006e+16, congestion impr 0.0, iteration 3. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 15390000, 15390000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 15390000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery7' with improvement of 2.9415809024999936e+16. +Root controller: selected best controller 'battery7' with global energy impr 2.9415809024999936e+16, congestion impr 0.0, iteration 4. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery6' with improvement of 2.344441207499981e+16. +Root controller: selected best controller 'battery6' with global energy impr 2.344441207499981e+16, congestion impr 0.0, iteration 5. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery5' with improvement of 1.9925078175000064e+16. +Root controller: selected best controller 'battery5' with global energy impr 1.9925078175000064e+16, congestion impr 0.0, iteration 6. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery4' with improvement of 1.6354931625000448e+16. +Root controller: selected best controller 'battery4' with global energy impr 1.6354931625000448e+16, congestion impr 0.0, iteration 7. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 0, 5130000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery3' with improvement of 1.2916190024999936e+16. +Root controller: selected best controller 'battery3' with global energy impr 1.2916190024999936e+16, congestion impr 0.0, iteration 8. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 0, 0, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery2' with improvement of 9499199624999936.0. +Root controller: selected best controller 'battery2' with global energy impr 9499199624999936.0, congestion impr 0.0, iteration 9. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 5130000, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery1' with improvement of 5950983824999936.0. +Root controller: selected best controller 'battery1' with global energy impr 5950983824999936.0, congestion impr 0.0, iteration 10. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 5130000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery10' with improvement of 176728499999744.0. +Root controller: selected best controller 'battery10' with global energy impr 176728499999744.0, congestion impr 0.0, iteration 11. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 + \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index fc4c500..3653626 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -131,10 +131,19 @@ def create_ev_device_state( soc_percentage_before_charging2, ) + # Create done state + done_start = start_of_recharge2 + recharge_duration2 + done_duration = timedelta(hours=4, minutes=10) # 4 hours & 10 minutes + done_leakage = create_recharge_leakage_behaviour(done_start) + done_system_description, done_actuator_status, done_storage_status = create_driving_system_description( + done_start, final_fill_level_target2 + ) + done_usage_forecast = create_recharge_usage_forecast(done_start, done_duration) + device_state = S2FrbcDeviceState( - device_id="bat1", - device_name="bat1", - connection_id="cid1", + device_id=device_id, + device_name=device_id, + connection_id=device_id+"_cid1", priority_class=1, timestamp=omloop_starts_at, energy_in_current_timestep=PowerValue( @@ -146,107 +155,30 @@ def create_ev_device_state( recharge_system_description1, drive_system_description1, recharge_system_description2, + done_system_description, ], - leakage_behaviours=[recharge_leakage1, recharge_leakage2], + leakage_behaviours=[recharge_leakage1, recharge_leakage2, done_leakage], usage_forecasts=[ recharge_usage_forecast1, drive_usage_forecast1, recharge_usage_forecast2, + done_usage_forecast, ], fill_level_target_profiles=[ recharge_fill_level_target1, recharge_fill_level_target2, ], - computational_parameters=S2FrbcDeviceState.ComputationalParameters(1000, 20), + computational_parameters=S2FrbcDeviceState.ComputationalParameters(100, 20), actuator_statuses=[ off_actuator_status1, charge_actuator_status1, charge_actuator_status2, + done_actuator_status, ], - storage_status=[storage_status1, storage_status2], + storage_status=[storage_status1, storage_status2, done_storage_status], ) return device_state - -@pytest.mark.skip(reason="Skipping test_connexxion_ev_bus_baseline_byd_225") -def test_connexxion_ev_bus_baseline_byd_225(): - # Arrange - device_id = "01-01-70.225" - omloop_starts_at = datetime.fromtimestamp(3600) - cet = timezone(timedelta(hours=1)) - charge_power_soc_percentage_per_second_night = 0.0054012349 - charging_power_kw_night = 28 - - charge_power_soc_percentage_per_second_day = 0.01099537114 - charging_power_kw_day = 57 - - # Create system descriptions and forecasts - - start_of_recharge1 = omloop_starts_at.astimezone(cet) - recharge_duration1 = timedelta(hours=7, minutes=13) - soc_percentage_before_charging1 = 0 - final_fill_level_target1 = 100 - - # Create system description for driving - - start_of_drive1 = start_of_recharge1 + recharge_duration1 - drive_duration1 = timedelta(hours=4, minutes=36) - drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 - soc_percentage_before_driving1 = 100 - - start_of_recharge2 = start_of_drive1 + drive_duration1 - recharge_duration2 = timedelta(seconds=10000) - soc_percentage_before_charging2 = 37.7463951 - final_fill_level_target2 = 94.4825134 - - device_state = create_ev_device_state( - device_id, - omloop_starts_at, - cet, - charge_power_soc_percentage_per_second_night, - charging_power_kw_night, - charge_power_soc_percentage_per_second_day, - charging_power_kw_day, - soc_percentage_before_charging1, - final_fill_level_target1, - recharge_duration1, - start_of_recharge1, - drive_duration1, - start_of_drive1, - drive_consume_soc_per_second1, - soc_percentage_before_driving1, - soc_percentage_before_charging2, - final_fill_level_target2, - recharge_duration2, - start_of_recharge2, - ) - - epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) - target_metadata = ProfileMetadata( - profile_start=epoch_time, - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, - ) - - plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - - planner = S2FrbcDevicePlanner(device_state, target_metadata, plan_due_by_date) - - planning = planner.create_initial_planning(plan_due_by_date, ids) - print(planning.get_energy().elements) - target = JouleProfile(profile_start=target_metadata.get_profile_start(), timestep_duration=target_metadata.get_timestep_duration(), elements=get_JouleProfileTarget()) - - diff_to_global_target = target.subtract(planning.get_energy()) - print(diff_to_global_target.elements) - target_profile = TargetProfile.from_joule_profile(diff_to_global_target) - #create a null profile - null_profile = JouleProfile(profile_start=target_metadata.get_profile_start(), timestep_duration=target_metadata.get_timestep_duration(), elements=[None] * target_metadata.get_nr_of_timesteps()) - improved = planner.create_improved_planning(target_profile, null_profile, null_profile, plan_due_by_date) - plot_planning_results(target_metadata.get_timestep_duration(), target_metadata.get_nr_of_timesteps(), improved.get_energy().elements, get_JouleProfileTarget()) - - assert improved.get_energy().elements == get_JouleProfileTarget() - - @staticmethod def create_recharge_system_description( start_of_recharge, @@ -259,7 +191,7 @@ def create_recharge_system_description( on_operation_element = FRBCOperationModeElement( fill_level_range=NumberRange(start_of_range=0, end_of_range=100), fill_rate=NumberRange( - start_of_range = 0, + start_of_range=0, end_of_range=charge_power_soc_percentage_per_second, ), power_ranges=[ @@ -579,17 +511,12 @@ def plot_planning_results( plt.show() -def test_planning_service_impl_with_ev_device(): - """Test the PlanningServiceImpl with an EV device.""" - print("Test the PlanningServiceImpl with an EV device.") - # Arrange - device_id = "bat1" - omloop_starts_at = datetime.fromtimestamp(3600) - cet = timezone(timedelta(hours=1)) - +def create_device_state( + device_id: str, omloop_starts_at: datetime, cet: timezone +) -> S2FrbcDeviceState: # Device charging parameters - charge_power_soc_percentage_per_second_night = 0.0054012349 - charging_power_kw_night = 28 + charge_power_soc_percentage_per_second_night = 0.01099537114 + charging_power_kw_night = 57 charge_power_soc_percentage_per_second_day = 0.01099537114 charging_power_kw_day = 57 @@ -607,8 +534,8 @@ def test_planning_service_impl_with_ev_device(): # Second recharge period start_of_recharge2 = start_of_drive1 + drive_duration1 - recharge_duration2 = timedelta(seconds=10000) # 1.5 hours - soc_percentage_before_charging2 = 37.7463951 + recharge_duration2 = timedelta(seconds=10000) # 1.5 hours + soc_percentage_before_charging2 = 37.0 final_fill_level_target2 = 94.4825134 # Create the device state @@ -633,27 +560,78 @@ def test_planning_service_impl_with_ev_device(): recharge_duration2, start_of_recharge2, ) + return device_state + + +def get_target_profile_elements(): + """Create target profile elements with the same pattern as the Java code.""" + target_elements = [] + # First 38 elements of 0 + target_elements.extend([0] * 38) + # Next 62 elements of 8400000 + target_elements.extend([8400000] * 62) + # Next 55 elements of 0 + target_elements.extend([0] * 55) + # Next 18 elements of 8400000 + target_elements.extend([8400000] * 18) + # Last 115 elements of 176000000 + target_elements.extend([176000000] * 115) + return target_elements + + +def test_planning_service_impl_with_ev_device(): + """Test the PlanningServiceImpl with an EV device.""" + print("Test the PlanningServiceImpl with an EV device.") + # Create 10 device states + numberOfDevices = 10 - # Create profile metadata - epoch_time = datetime(1970, 1, 1, tzinfo=timezone.utc) + # Create profile metadata and target profile target_metadata = ProfileMetadata( - profile_start=epoch_time, + profile_start=datetime(1970, 1, 1, tzinfo=timezone.utc), timestep_duration=timedelta(seconds=300), nr_of_timesteps=288, ) - target_profile_elements = get_JouleProfileTarget() + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + target_profile_elements = get_target_profile_elements() + + device_states = [ + create_device_state( + f"battery{i+1}", datetime.fromtimestamp(3600), timezone(timedelta(hours=1)) + ) + for i in range(numberOfDevices) + ] + + # Create Dictionary of device states + device_states_dict = { + device_state.device_id: device_state for device_state in device_states + } + + # Create congestion points mapping + congestion_points_by_connection_id = { + device_id: "" for device_id in device_states_dict.keys() + } + # Create a target profile global_target_profile = TargetProfile( profile_start=target_metadata.get_profile_start(), timestep_duration=target_metadata.get_timestep_duration(), elements=target_profile_elements, ) + # Create a cluster state using the list of device states + cluster_state = ClusterState(datetime.now(), device_states_dict, congestion_points_by_connection_id) + + # Create an empty map for congestion point targets + congestion_point_targets = {} + + # Create a cluster target + cluster_target = ClusterTarget( + datetime.now(), None, None, global_target_profile=global_target_profile, congestion_point_targets=congestion_point_targets + ) - # Create planning service config config = PlanningServiceConfig( energy_improvement_criterion=10.0, cost_improvement_criterion=1.0, - congestion_retry_iterations=5, + congestion_retry_iterations=10, multithreaded=False, ) print("Generating plan!") @@ -661,16 +639,11 @@ def test_planning_service_impl_with_ev_device(): # Create planning service implementation service = PlanningServiceImpl(config) - # Create cluster state with device - cluster_state = ClusterState() - cluster_state.get_device_states()[device_id] = device_state - cluster_state.set_congestion_point(device_state.get_connection_id(), "") - # Create cluster target + cluster_target = ClusterTarget( - datetime.now(), None, None, global_target_profile=global_target_profile + datetime.now(), None, None, global_target_profile=global_target_profile, congestion_point_targets=congestion_point_targets ) - # Set due by date for planning plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) # Act - Generate a plan @@ -689,33 +662,36 @@ def test_planning_service_impl_with_ev_device(): # Log information print(f"Plan generated in {execution_time:.2f} seconds") - + # Assert assert cluster_plan is not None print("Got cluster plan") + if cluster_plan is None: + print("Cluster plan is None") + return # Get the plan for our device device_plans = cluster_plan.get_plan_data().get_device_plans() - device_plan = next( - (p for p in device_plans if p.get_device_id() == device_id), None - ) + energy_profile = cluster_plan.get_joule_profile() + + plot_planning_results( + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288, + predicted_energy_elements=energy_profile.get_elements(), + target_energy_elements=target_profile_elements, + ) + + # Get only the non-None plans + device_plans = [plan for plan in device_plans if plan is not None] # Assert that we got a plan for our device - assert device_plan is not None + assert len(device_plans) > 0 print("Got device plan") # Print and verify the energy profile - energy_profile = device_plan.get_energy_profile() - # Basic assertion - the energy profile should have the expected number of elements assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() - plot_planning_results( - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, - predicted_energy_elements=energy_profile.get_elements(), - target_energy_elements=target_profile_elements, - ) - + # Main function if __name__ == "__main__": From dad9e94b5485ffd3199a0e397af0ac5044e78e4a Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 2 Jun 2025 09:08:53 +0200 Subject: [PATCH 28/33] Scheduling 10 EVs Signed-off-by: Vlad Iftime --- .../tests/joule_profile_example.py | 297 ------------------ .../profile_steering/tests/profiling_results | 0 .../tests/profiling_results.py | 0 .../tests/profiling_results.txt | 0 .../tests/test_frbc_device.py | 14 +- 5 files changed, 6 insertions(+), 305 deletions(-) delete mode 100644 flexmeasures_s2/profile_steering/tests/joule_profile_example.py create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results.py create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results.txt diff --git a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py b/flexmeasures_s2/profile_steering/tests/joule_profile_example.py deleted file mode 100644 index 9555821..0000000 --- a/flexmeasures_s2/profile_steering/tests/joule_profile_example.py +++ /dev/null @@ -1,297 +0,0 @@ -from typing import List - - -JouleProfileTarget: List = [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 8400000, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, -] - - -def get_JouleProfileTarget() -> List: - return JouleProfileTarget diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results b/flexmeasures_s2/profile_steering/tests/profiling_results new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.py b/flexmeasures_s2/profile_steering/tests/profiling_results.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.txt b/flexmeasures_s2/profile_steering/tests/profiling_results.txt new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 3653626..88411dd 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -32,9 +32,7 @@ from s2python.common import Timer from s2python.common import PowerValue from s2python.common import Commodity -from flexmeasures_s2.profile_steering.tests.joule_profile_example import ( - get_JouleProfileTarget, -) + from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( DevicePlanner, ) @@ -522,19 +520,19 @@ def create_device_state( # First recharge period start_of_recharge1 = omloop_starts_at.astimezone(cet) - recharge_duration1 = timedelta(hours=7, minutes=13) + recharge_duration1 = timedelta(hours=7, minutes=15) soc_percentage_before_charging1 = 0 final_fill_level_target1 = 100 # Driving period start_of_drive1 = start_of_recharge1 + recharge_duration1 - drive_duration1 = timedelta(hours=4, minutes=36) + drive_duration1 = timedelta(hours=4, minutes=35) drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 soc_percentage_before_driving1 = 100 # Second recharge period start_of_recharge2 = start_of_drive1 + drive_duration1 - recharge_duration2 = timedelta(seconds=10000) # 1.5 hours + recharge_duration2 = timedelta(hours=7) soc_percentage_before_charging2 = 37.0 final_fill_level_target2 = 94.4825134 @@ -571,9 +569,9 @@ def get_target_profile_elements(): # Next 62 elements of 8400000 target_elements.extend([8400000] * 62) # Next 55 elements of 0 - target_elements.extend([0] * 55) + target_elements.extend([0] * 45) # Next 18 elements of 8400000 - target_elements.extend([8400000] * 18) + target_elements.extend([8400000] * 28) # Last 115 elements of 176000000 target_elements.extend([176000000] * 115) return target_elements From f0e31b4e624b7bfc79c756cfab01672ea98732c1 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Mon, 2 Jun 2025 11:18:33 +0200 Subject: [PATCH 29/33] Scheduling 10 EVs Signed-off-by: Vlad Iftime --- .../tests/profiling_results.py | 0 .../tests/profiling_results.txt | 7243 +++++++++++++++++ .../tests/test_frbc_device.py | 12 +- 3 files changed, 7249 insertions(+), 6 deletions(-) delete mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results.py diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.py b/flexmeasures_s2/profile_steering/tests/profiling_results.py deleted file mode 100644 index e69de29..0000000 diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.txt b/flexmeasures_s2/profile_steering/tests/profiling_results.txt index e69de29..b0b9c62 100644 --- a/flexmeasures_s2/profile_steering/tests/profiling_results.txt +++ b/flexmeasures_s2/profile_steering/tests/profiling_results.txt @@ -0,0 +1,7243 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +here +here +here +here +here +here +here +here +here +here +Current planning is within the congestion target range. Returning it. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 2.683116967500083e+16. +Root controller: selected best controller 'battery10' with global energy impr 2.683116967500083e+16, congestion impr 0.0, iteration 1. +Improving-------------------------> +CP '': Selected best controller 'battery9' with improvement of 1.820404867499981e+16. +Root controller: selected best controller 'battery9' with global energy impr 1.820404867499981e+16, congestion impr 0.0, iteration 2. +Improving-------------------------> +CP '': Selected best controller 'battery8' with improvement of 1.124027887500032e+16. +Root controller: selected best controller 'battery8' with global energy impr 1.124027887500032e+16, congestion impr 0.0, iteration 3. +Improving-------------------------> +CP '': Selected best controller 'battery7' with improvement of 6788644424999936.0. +Root controller: selected best controller 'battery7' with global energy impr 6788644424999936.0, congestion impr 0.0, iteration 4. +Improving-------------------------> +CP '': Selected best controller 'battery6' with improvement of 5305740975000576.0. +Root controller: selected best controller 'battery6' with global energy impr 5305740975000576.0, congestion impr 0.0, iteration 5. +Improving-------------------------> +CP '': Selected best controller 'battery5' with improvement of 5263341524999680.0. +Root controller: selected best controller 'battery5' with global energy impr 5263341524999680.0, congestion impr 0.0, iteration 6. +Improving-------------------------> +CP '': Selected best controller 'battery4' with improvement of 5294044575000576.0. +Root controller: selected best controller 'battery4' with global energy impr 5294044575000576.0, congestion impr 0.0, iteration 7. +Improving-------------------------> +CP '': Selected best controller 'battery3' with improvement of 5247258974999552.0. +Root controller: selected best controller 'battery3' with global energy impr 5247258974999552.0, congestion impr 0.0, iteration 8. +Improving-------------------------> +CP '': Selected best controller 'battery2' with improvement of 5267727675000320.0. +Root controller: selected best controller 'battery2' with global energy impr 5267727675000320.0, congestion impr 0.0, iteration 9. +Improving-------------------------> +CP '': Selected best controller 'battery1' with improvement of 5234100524999680.0. +Root controller: selected best controller 'battery1' with global energy impr 5234100524999680.0, congestion impr 0.0, iteration 10. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 0.0. +Root controller: selected best controller 'battery10' with global energy impr 0.0, congestion impr 0.0, iteration 11. +Optimizing priority class 1 was done after 11 iterations. +Plan generated in 979.74 seconds +Got cluster plan +Got device plan + + _ ._ __/__ _ _ _ _ _/_ Recorded: 09:18:51 Samples: 966023 + /_//_/// /_\ / //_// / //_'/ // Duration: 981.020 CPU time: 981.295 +/ _/ v5.0.1 + +Program: test_frbc_device.py + +981.017 test_frbc_device.py:1 +├─ 979.751 test_planning_service_impl_with_ev_device test_frbc_device.py:580 +│ ├─ 979.743 PlanningServiceImpl.plan ../planning_service_impl.py:181 +│ │ ├─ 979.586 RootPlanner.plan ../root_planner.py:54 +│ │ │ ├─ 898.823 CongestionPointPlanner.create_improved_planning ../congestion_point_planner.py:144 +│ │ │ │ ├─ 897.555 S2FrbcDevicePlanner.create_improved_planning ../device_planner/frbc/s2_frbc_device_planner.py:98 +│ │ │ │ │ ├─ 897.500 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 +│ │ │ │ │ │ ├─ 894.398 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 +│ │ │ │ │ │ │ ├─ 885.694 try_create_next_state ../device_planner/frbc/frbc_state.py:357 +│ │ │ │ │ │ │ │ ├─ 703.762 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 +│ │ │ │ │ │ │ │ │ ├─ 186.059 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ ├─ 87.402 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ │ ├─ 63.648 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ ├─ 14.183 str.replace +│ │ │ │ │ │ │ │ │ │ ├─ 4.005 list.count +│ │ │ │ │ │ │ │ │ │ ├─ 2.960 str.strip +│ │ │ │ │ │ │ │ │ │ └─ 2.606 len +│ │ │ │ │ │ │ │ │ ├─ 78.156 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 +│ │ │ │ │ │ │ │ │ │ ├─ 49.615 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ │ ├─ 24.977 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 17.870 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 3.550 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 1.966 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 1.591 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ │ ├─ 21.533 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.935 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ │ └─ 1.169 next +│ │ │ │ │ │ │ │ │ │ ├─ 25.092 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 3.449 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 +│ │ │ │ │ │ │ │ │ ├─ 75.858 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 +│ │ │ │ │ │ │ │ │ │ ├─ 38.879 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ │ │ │ ├─ 26.525 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 4.274 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 +│ │ │ │ │ │ │ │ │ │ │ ├─ 3.213 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ │ │ │ │ ├─ 2.772 abs +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.969 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.065 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.060 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 +│ │ │ │ │ │ │ │ │ │ ├─ 21.729 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ │ ├─ 8.572 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 +│ │ │ │ │ │ │ │ │ │ ├─ 3.832 FrbcState.get_bucket ../device_planner/frbc/frbc_state.py:488 +│ │ │ │ │ │ │ │ │ │ ├─ 2.657 FrbcState.set_selection_reason ../device_planner/frbc/frbc_state.py:509 +│ │ │ │ │ │ │ │ │ │ └─ 0.188 FrbcState.get_fill_level_distance ../device_planner/frbc/frbc_state.py:469 +│ │ │ │ │ │ │ │ │ ├─ 61.248 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 +│ │ │ │ │ │ │ │ │ │ ├─ 41.115 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ │ ├─ 22.325 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 15.619 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 3.368 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 1.755 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 1.583 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ │ ├─ 15.917 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.795 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ │ └─ 1.078 next +│ │ │ │ │ │ │ │ │ │ ├─ 14.928 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 1.882 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 +│ │ │ │ │ │ │ │ │ │ ├─ 1.730 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ └─ 1.593 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ ├─ 49.919 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ │ │ │ ├─ 31.700 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 18.218 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ │ ├─ 43.240 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 +│ │ │ │ │ │ │ │ │ │ ├─ 31.351 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 +│ │ │ │ │ │ │ │ │ │ │ ├─ 18.448 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 10.138 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.564 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ │ │ └─ 1.201 next +│ │ │ │ │ │ │ │ │ │ ├─ 9.932 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 1.957 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ ├─ 23.999 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 +│ │ │ │ │ │ │ │ │ │ ├─ 18.764 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 3.421 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ └─ 1.814 FrbcTimestep.get_nr_of_buckets ../device_planner/frbc/frbc_timestep.py:57 +│ │ │ │ │ │ │ │ │ ├─ 11.175 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ ├─ 8.727 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 2.448 isinstance +│ │ │ │ │ │ │ │ │ ├─ 10.469 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 +│ │ │ │ │ │ │ │ │ │ ├─ 6.290 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ │ └─ 4.179 timedelta.total_seconds +│ │ │ │ │ │ │ │ │ ├─ 9.885 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 +│ │ │ │ │ │ │ │ │ │ ├─ 8.771 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 +│ │ │ │ │ │ │ │ │ │ │ ├─ 6.743 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 6.043 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.565 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.349 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.216 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.170 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.085 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 next +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.013 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.959 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:344 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.486 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.473 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.354 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.119 isinstance +│ │ │ │ │ │ │ │ │ │ │ └─ 0.056 next +│ │ │ │ │ │ │ │ │ │ └─ 1.114 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 7.603 isinstance +│ │ │ │ │ │ │ │ │ ├─ 7.515 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ │ ├─ 5.592 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ ├─ 4.793 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.648 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.398 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.250 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.186 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 isinstance +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.091 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.059 next +│ │ │ │ │ │ │ │ │ │ ├─ 1.234 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.401 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.314 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.087 isinstance +│ │ │ │ │ │ │ │ │ │ └─ 0.288 isinstance +│ │ │ │ │ │ │ │ │ ├─ 5.665 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ │ ├─ 3.546 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 2.119 hash +│ │ │ │ │ │ │ │ │ ├─ 5.650 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ │ ├─ 4.907 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ │ │ ├─ 4.059 S2ActuatorConfiguration.get_factor ../device_planner/frbc/s2_frbc_actuator_configuration.py:15 +│ │ │ │ │ │ │ │ │ ├─ 3.637 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ ├─ 3.258 dict.items +│ │ │ │ │ │ │ │ │ ├─ 2.857 dict.copy +│ │ │ │ │ │ │ │ │ ├─ 2.219 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 +│ │ │ │ │ │ │ │ │ ├─ 2.160 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ │ │ ├─ 2.105 dict.keys +│ │ │ │ │ │ │ │ │ ├─ 1.936 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ │ │ │ │ │ ├─ 1.910 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 +│ │ │ │ │ │ │ │ │ ├─ 1.899 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ ├─ 1.865 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ ├─ 1.857 FrbcTimestep.get_forecasted_usage ../device_planner/frbc/frbc_timestep.py:168 +│ │ │ │ │ │ │ │ │ ├─ 1.814 FrbcTimestep.get_target ../device_planner/frbc/frbc_timestep.py:109 +│ │ │ │ │ │ │ │ │ ├─ 1.617 FrbcTimestep.get_max_constraint ../device_planner/frbc/frbc_timestep.py:115 +│ │ │ │ │ │ │ │ │ ├─ 1.585 FrbcTimestep.get_min_constraint ../device_planner/frbc/frbc_timestep.py:112 +│ │ │ │ │ │ │ │ │ ├─ 0.115 timer_key ../device_planner/frbc/frbc_state.py:346 +│ │ │ │ │ │ │ │ │ ├─ 0.089 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ │ │ ├─ 0.026 dict.pop +│ │ │ │ │ │ │ │ │ └─ 0.003 get_initial_timer_elapse_map_for_system_description ../device_planner/frbc/frbc_state.py:208 +│ │ │ │ │ │ │ │ │ ├─ 0.002 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ ├─ 85.245 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ ├─ 61.877 [self] uuid.py +│ │ │ │ │ │ │ │ │ ├─ 14.057 str.replace +│ │ │ │ │ │ │ │ │ ├─ 3.860 list.count +│ │ │ │ │ │ │ │ │ ├─ 2.851 str.strip +│ │ │ │ │ │ │ │ │ └─ 2.600 len +│ │ │ │ │ │ │ │ ├─ 63.553 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ ├─ 11.310 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ ├─ 8.898 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 2.412 isinstance +│ │ │ │ │ │ │ │ ├─ 5.642 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ ├─ 3.502 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 2.140 hash +│ │ │ │ │ │ │ │ ├─ 4.291 isinstance +│ │ │ │ │ │ │ │ ├─ 3.947 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ ├─ 3.741 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ ├─ 1.680 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ ├─ 0.833 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.713 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.461 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.252 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.195 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.057 isinstance +│ │ │ │ │ │ │ │ │ │ ├─ 0.083 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ └─ 0.051 next +│ │ │ │ │ │ │ │ │ ├─ 1.344 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.406 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ ├─ 0.304 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.102 isinstance +│ │ │ │ │ │ │ │ │ └─ 0.311 isinstance +│ │ │ │ │ │ │ │ ├─ 2.097 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ │ ├─ 1.833 dict.items +│ │ │ │ │ │ │ │ ├─ 0.110 timer_key ../device_planner/frbc/frbc_state.py:346 +│ │ │ │ │ │ │ │ ├─ 0.097 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 +│ │ │ │ │ │ │ │ └─ 0.065 dict.get +│ │ │ │ │ │ │ ├─ 6.625 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ └─ 2.079 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 +│ │ │ │ │ │ │ ├─ 0.884 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ ├─ 0.441 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 +│ │ │ │ │ │ │ ├─ 0.220 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 +│ │ │ │ │ │ │ ├─ 0.184 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 +│ │ │ │ │ │ │ │ ├─ 0.154 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.030 len +│ │ │ │ │ │ │ ├─ 0.148 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 +│ │ │ │ │ │ │ │ ├─ 0.113 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 +│ │ │ │ │ │ │ │ │ ├─ 0.058 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:89 +│ │ │ │ │ │ │ │ │ │ ├─ 0.042 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ │ │ └─ 0.016 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.032 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.018 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.006 dict.get +│ │ │ │ │ │ │ │ ├─ 0.004 dict.keys +│ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ ├─ 0.105 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ ├─ 0.045 list.append +│ │ │ │ │ │ │ ├─ 0.024 S2FrbcDeviceStateWrapper.operation_mode_uses_factor ../device_planner/frbc/s2_frbc_device_state_wrapper.py:119 +│ │ │ │ │ │ │ │ ├─ 0.013 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.011 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ │ ├─ 0.006 FrbcOperationModeWrapper.__init__ ../device_planner/frbc/frbc_operation_mode_wrapper.py:38 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/frbc_operation_mode_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeWrapper.calculate_uses_factor ../device_planner/frbc/frbc_operation_mode_wrapper.py:48 +│ │ │ │ │ │ │ │ │ ├─ 0.001 abs +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_operation_mode_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.003 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:109 +│ │ │ │ │ │ │ │ │ ├─ 0.002 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.001 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ ├─ 0.022 S2FrbcDeviceStateWrapper.get_normal_operation_modes_for_actuator ../device_planner/frbc/s2_frbc_device_state_wrapper.py:72 +│ │ │ │ │ │ │ │ ├─ 0.014 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.005 dict.get +│ │ │ │ │ │ │ │ └─ 0.003 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ ├─ 0.004 len +│ │ │ │ │ │ │ └─ 0.002 dict.keys +│ │ │ │ │ │ ├─ 1.545 FrbcTimestep.get_final_states_within_fill_level_target ../device_planner/frbc/frbc_timestep.py:132 +│ │ │ │ │ │ │ ├─ 1.438 ../device_planner/frbc/frbc_timestep.py:136 +│ │ │ │ │ │ │ │ ├─ 1.320 FrbcTimestep.state_is_within_fill_level_target_range ../device_planner/frbc/frbc_timestep.py:146 +│ │ │ │ │ │ │ │ │ ├─ 0.833 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ ├─ 0.187 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 +│ │ │ │ │ │ │ │ │ ├─ 0.168 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ └─ 0.132 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ └─ 0.118 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ ├─ 0.078 FrbcTimestep.get_final_states ../device_planner/frbc/frbc_timestep.py:124 +│ │ │ │ │ │ │ │ ├─ 0.072 ../device_planner/frbc/frbc_timestep.py:125 +│ │ │ │ │ │ │ │ └─ 0.006 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ └─ 0.005 FrbcTimestep.get_fill_level_target_distance ../device_planner/frbc/frbc_timestep.py:157 +│ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ └─ 0.002 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 +│ │ │ │ │ │ ├─ 1.154 FrbcTimestep.clear ../device_planner/frbc/frbc_timestep.py:171 +│ │ │ │ │ │ ├─ 0.317 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ │ ├─ 0.055 OperationModeProfileTree.convert_to_plan ../device_planner/frbc/operation_mode_profile_tree.py:316 +│ │ │ │ │ │ │ ├─ 0.023 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ │ │ ├─ 0.010 FrbcState.get_previous_state ../device_planner/frbc/frbc_state.py:479 +│ │ │ │ │ │ │ ├─ 0.007 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ ├─ 0.005 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 +│ │ │ │ │ │ │ ├─ 0.005 FrbcState.get_selection_reason ../device_planner/frbc/frbc_state.py:512 +│ │ │ │ │ │ │ ├─ 0.004 FrbcState.get_timestep_energy ../device_planner/frbc/frbc_state.py:491 +│ │ │ │ │ │ │ └─ 0.001 JouleProfile.__init__ ../common/joule_profile.py:8 +│ │ │ │ │ │ ├─ 0.013 ../device_planner/frbc/operation_mode_profile_tree.py:301 +│ │ │ │ │ │ │ ├─ 0.009 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ │ │ └─ 0.004 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ ├─ 0.012 FrbcTimestep.set_targets ../device_planner/frbc/frbc_timestep.py:60 +│ │ │ │ │ │ ├─ 0.004 find_best_end_state ../device_planner/frbc/operation_mode_profile_tree.py:308 +│ │ │ │ │ │ │ ├─ 0.002 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ └─ 0.001 abs +│ │ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ │ ├─ 0.001 TargetProfile.get_elements ../common/target_profile.py:159 +│ │ │ │ │ │ └─ 0.001 JouleProfile.get_elements ../common/abstract_profile.py:78 +│ │ │ │ │ ├─ 0.028 TargetProfile.add ../common/target_profile.py:125 +│ │ │ │ │ │ ├─ 0.011 [self] ../common/target_profile.py +│ │ │ │ │ │ ├─ 0.006 JouleElement.__init__ ../common/target_profile.py:15 +│ │ │ │ │ │ ├─ 0.006 JouleProfile.get_energy_for_timestep ../common/joule_profile.py:196 +│ │ │ │ │ │ │ ├─ 0.005 [self] ../common/joule_profile.py +│ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ ├─ 0.003 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ │ │ └─ 0.002 list.append +│ │ │ │ │ ├─ 0.016 [self] ../device_planner/frbc/s2_frbc_device_planner.py +│ │ │ │ │ ├─ 0.006 JouleProfile.add ../common/joule_profile.py:110 +│ │ │ │ │ │ ├─ 0.005 [self] ../common/joule_profile.py +│ │ │ │ │ │ └─ 0.001 JouleProfile.default_value ../common/joule_profile.py:75 +│ │ │ │ │ ├─ 0.004 S2FrbcDevicePlanner.is_storage_available ../device_planner/frbc/s2_frbc_device_planner.py:61 +│ │ │ │ │ │ └─ 0.004 get_latest_before ../device_planner/frbc/operation_mode_profile_tree.py:203 +│ │ │ │ │ │ ├─ 0.003 datetime.replace +│ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ └─ 0.001 S2FrbcPlan.get_energy ../device_planner/frbc/s2_frbc_plan.py:24 +│ │ │ │ ├─ 1.223 Proposal.is_preferred_to ../common/proposal.py:105 +│ │ │ │ │ └─ 1.223 Proposal.get_global_improvement_value ../common/proposal.py:29 +│ │ │ │ │ ├─ 1.144 TargetProfile.subtract ../common/target_profile.py:104 +│ │ │ │ │ │ ├─ 0.810 [self] ../common/target_profile.py +│ │ │ │ │ │ ├─ 0.315 JouleElement.__init__ ../common/target_profile.py:15 +│ │ │ │ │ │ ├─ 0.011 JouleProfile.get_energy_for_timestep ../common/joule_profile.py:196 +│ │ │ │ │ │ │ ├─ 0.006 [self] ../common/joule_profile.py +│ │ │ │ │ │ │ └─ 0.005 len +│ │ │ │ │ │ ├─ 0.005 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ │ │ └─ 0.003 list.append +│ │ │ │ │ ├─ 0.052 TargetProfile.sum_quadratic_distance ../common/target_profile.py:146 +│ │ │ │ │ │ ├─ 0.046 ../common/target_profile.py:147 +│ │ │ │ │ │ │ ├─ 0.035 [self] ../common/target_profile.py +│ │ │ │ │ │ │ ├─ 0.008 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ │ │ │ └─ 0.003 isinstance +│ │ │ │ │ │ └─ 0.006 [self] ../common/target_profile.py +│ │ │ │ │ ├─ 0.022 TargetProfile.add ../common/target_profile.py:125 +│ │ │ │ │ │ ├─ 0.016 [self] ../common/target_profile.py +│ │ │ │ │ │ ├─ 0.004 JouleElement.__init__ ../common/target_profile.py:15 +│ │ │ │ │ │ ├─ 0.001 list.append +│ │ │ │ │ │ └─ 0.001 JouleProfile.get_energy_for_timestep ../common/joule_profile.py:196 +│ │ │ │ │ └─ 0.005 [self] ../common/proposal.py +│ │ │ │ ├─ 0.040 Proposal.get_congestion_improvement_value ../common/proposal.py:60 +│ │ │ │ │ ├─ 0.015 JouleProfile.subtract ../common/joule_profile.py:125 +│ │ │ │ │ │ ├─ 0.013 [self] ../common/joule_profile.py +│ │ │ │ │ │ └─ 0.002 JouleProfile.default_value ../common/joule_profile.py:75 +│ │ │ │ │ ├─ 0.013 JouleProfile.add ../common/joule_profile.py:110 +│ │ │ │ │ │ ├─ 0.010 [self] ../common/joule_profile.py +│ │ │ │ │ │ ├─ 0.002 JouleProfile.default_value ../common/joule_profile.py:75 +│ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ ├─ 0.007 JouleProfile.minimum ../common/joule_profile.py:165 +│ │ │ │ │ │ ├─ 0.003 ../common/joule_profile.py:169 +│ │ │ │ │ │ ├─ 0.003 JouleProfile.__init__ ../common/joule_profile.py:8 +│ │ │ │ │ │ │ └─ 0.003 JouleProfile.__init__ ../common/abstract_profile.py:11 +│ │ │ │ │ │ │ └─ 0.003 JouleProfile.validate ../common/joule_profile.py:71 +│ │ │ │ │ │ │ ├─ 0.002 JouleProfile.validate ../common/abstract_profile.py:56 +│ │ │ │ │ │ │ └─ 0.001 [self] ../common/joule_profile.py +│ │ │ │ │ │ └─ 0.001 [self] ../common/joule_profile.py +│ │ │ │ │ ├─ 0.003 JouleProfile.maximum ../common/joule_profile.py:176 +│ │ │ │ │ │ ├─ 0.002 ../common/joule_profile.py:180 +│ │ │ │ │ │ └─ 0.001 [self] ../common/joule_profile.py +│ │ │ │ │ └─ 0.002 JouleProfile.__init__ ../common/joule_profile.py:8 +│ │ │ │ │ └─ 0.002 JouleProfile.__init__ ../common/abstract_profile.py:11 +│ │ │ │ │ ├─ 0.001 ProfileMetadata.__init__ ../common/profile_metadata.py:9 +│ │ │ │ │ └─ 0.001 [self] ../common/abstract_profile.py +│ │ │ │ └─ 0.005 CongestionPointPlanner.get_current_planning ../congestion_point_planner.py:219 +│ │ │ │ └─ 0.005 JouleProfile.add ../common/joule_profile.py:110 +│ │ │ │ ├─ 0.004 [self] ../common/joule_profile.py +│ │ │ │ └─ 0.001 JouleProfile.__init__ ../common/joule_profile.py:8 +│ │ │ │ └─ 0.001 JouleProfile.__init__ ../common/abstract_profile.py:11 +│ │ │ │ └─ 0.001 JouleProfile.validate ../common/joule_profile.py:71 +│ │ │ ├─ 80.752 CongestionPointPlanner.create_initial_planning ../congestion_point_planner.py:51 +│ │ │ │ └─ 80.752 S2FrbcDevicePlanner.create_initial_planning ../device_planner/frbc/s2_frbc_device_planner.py:136 +│ │ │ │ ├─ 80.750 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 +│ │ │ │ │ ├─ 80.583 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 +│ │ │ │ │ │ ├─ 79.786 try_create_next_state ../device_planner/frbc/frbc_state.py:357 +│ │ │ │ │ │ │ ├─ 63.218 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 +│ │ │ │ │ │ │ │ ├─ 16.102 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ ├─ 8.036 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ ├─ 5.824 [self] uuid.py +│ │ │ │ │ │ │ │ │ ├─ 1.327 str.replace +│ │ │ │ │ │ │ │ │ ├─ 0.366 list.count +│ │ │ │ │ │ │ │ │ ├─ 0.289 str.strip +│ │ │ │ │ │ │ │ │ └─ 0.230 len +│ │ │ │ │ │ │ │ ├─ 7.552 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 +│ │ │ │ │ │ │ │ │ ├─ 4.354 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ │ │ ├─ 2.985 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.384 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 +│ │ │ │ │ │ │ │ │ │ ├─ 0.332 abs +│ │ │ │ │ │ │ │ │ │ ├─ 0.189 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ │ ├─ 0.173 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ │ ├─ 0.154 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 +│ │ │ │ │ │ │ │ │ │ └─ 0.137 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ │ │ ├─ 1.925 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ ├─ 0.751 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 +│ │ │ │ │ │ │ │ │ ├─ 0.315 FrbcState.get_bucket ../device_planner/frbc/frbc_state.py:488 +│ │ │ │ │ │ │ │ │ ├─ 0.193 FrbcState.set_selection_reason ../device_planner/frbc/frbc_state.py:509 +│ │ │ │ │ │ │ │ │ └─ 0.013 FrbcState.get_fill_level_distance ../device_planner/frbc/frbc_state.py:469 +│ │ │ │ │ │ │ │ ├─ 6.904 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 +│ │ │ │ │ │ │ │ │ ├─ 4.324 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ ├─ 2.305 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.677 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.324 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.157 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.147 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ ├─ 1.759 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.152 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ └─ 0.108 next +│ │ │ │ │ │ │ │ │ ├─ 2.291 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.289 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 +│ │ │ │ │ │ │ │ ├─ 5.452 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 +│ │ │ │ │ │ │ │ │ ├─ 3.612 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ ├─ 1.902 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ ├─ 1.347 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.304 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.136 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.115 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ ├─ 1.457 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.139 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ └─ 0.114 next +│ │ │ │ │ │ │ │ │ ├─ 1.392 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.155 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 +│ │ │ │ │ │ │ │ │ ├─ 0.147 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ └─ 0.146 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ ├─ 4.523 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ │ │ ├─ 2.876 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 1.647 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ ├─ 3.949 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 +│ │ │ │ │ │ │ │ │ ├─ 2.894 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 +│ │ │ │ │ │ │ │ │ │ ├─ 1.690 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.922 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 +│ │ │ │ │ │ │ │ │ │ ├─ 0.142 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 next +│ │ │ │ │ │ │ │ │ ├─ 0.883 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.172 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ ├─ 2.202 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 +│ │ │ │ │ │ │ │ │ ├─ 1.740 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.289 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ └─ 0.173 FrbcTimestep.get_nr_of_buckets ../device_planner/frbc/frbc_timestep.py:57 +│ │ │ │ │ │ │ │ ├─ 1.041 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 +│ │ │ │ │ │ │ │ │ ├─ 0.940 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 +│ │ │ │ │ │ │ │ │ │ ├─ 0.721 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.667 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.043 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.033 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 isinstance +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 next +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ ├─ 0.126 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.090 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:344 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.049 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.041 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.034 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.007 isinstance +│ │ │ │ │ │ │ │ │ │ └─ 0.003 next +│ │ │ │ │ │ │ │ │ └─ 0.101 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 1.006 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ ├─ 0.803 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.203 isinstance +│ │ │ │ │ │ │ │ ├─ 0.962 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 +│ │ │ │ │ │ │ │ │ ├─ 0.603 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ └─ 0.359 timedelta.total_seconds +│ │ │ │ │ │ │ │ ├─ 0.763 isinstance +│ │ │ │ │ │ │ │ ├─ 0.521 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ ├─ 0.506 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ ├─ 0.322 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.184 hash +│ │ │ │ │ │ │ │ ├─ 0.454 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ │ ├─ 0.350 S2ActuatorConfiguration.get_factor ../device_planner/frbc/s2_frbc_actuator_configuration.py:15 +│ │ │ │ │ │ │ │ ├─ 0.332 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ ├─ 0.150 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ ├─ 0.089 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.056 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.035 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.021 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 isinstance +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ │ ├─ 0.123 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.039 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ ├─ 0.030 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.009 isinstance +│ │ │ │ │ │ │ │ │ └─ 0.020 isinstance +│ │ │ │ │ │ │ │ ├─ 0.324 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ ├─ 0.309 dict.items +│ │ │ │ │ │ │ │ ├─ 0.249 dict.copy +│ │ │ │ │ │ │ │ ├─ 0.187 dict.keys +│ │ │ │ │ │ │ │ ├─ 0.184 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ │ ├─ 0.182 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 +│ │ │ │ │ │ │ │ ├─ 0.180 FrbcTimestep.get_target ../device_planner/frbc/frbc_timestep.py:109 +│ │ │ │ │ │ │ │ ├─ 0.174 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ ├─ 0.159 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ ├─ 0.156 FrbcTimestep.get_forecasted_usage ../device_planner/frbc/frbc_timestep.py:168 +│ │ │ │ │ │ │ │ ├─ 0.150 FrbcTimestep.get_max_constraint ../device_planner/frbc/frbc_timestep.py:115 +│ │ │ │ │ │ │ │ ├─ 0.147 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 +│ │ │ │ │ │ │ │ ├─ 0.135 FrbcTimestep.get_min_constraint ../device_planner/frbc/frbc_timestep.py:112 +│ │ │ │ │ │ │ │ ├─ 0.011 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ │ ├─ 0.010 timer_key ../device_planner/frbc/frbc_state.py:346 +│ │ │ │ │ │ │ │ ├─ 0.005 dict.pop +│ │ │ │ │ │ │ │ └─ 0.001 get_initial_timer_elapse_map_for_system_description ../device_planner/frbc/frbc_state.py:208 +│ │ │ │ │ │ │ ├─ 7.669 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ ├─ 5.575 [self] uuid.py +│ │ │ │ │ │ │ │ ├─ 1.251 str.replace +│ │ │ │ │ │ │ │ ├─ 0.364 list.count +│ │ │ │ │ │ │ │ ├─ 0.243 len +│ │ │ │ │ │ │ │ └─ 0.236 str.strip +│ │ │ │ │ │ │ ├─ 5.904 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ ├─ 1.031 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ ├─ 0.781 [self] uuid.py +│ │ │ │ │ │ │ │ └─ 0.250 isinstance +│ │ │ │ │ │ │ ├─ 0.533 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ ├─ 0.352 [self] uuid.py +│ │ │ │ │ │ │ │ └─ 0.181 hash +│ │ │ │ │ │ │ ├─ 0.398 isinstance +│ │ │ │ │ │ │ ├─ 0.338 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ ├─ 0.163 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ ├─ 0.087 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.065 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ ├─ 0.044 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.021 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.003 isinstance +│ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ └─ 0.005 next +│ │ │ │ │ │ │ │ ├─ 0.120 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.030 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ ├─ 0.023 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.007 isinstance +│ │ │ │ │ │ │ │ └─ 0.025 isinstance +│ │ │ │ │ │ │ ├─ 0.335 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ ├─ 0.180 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ ├─ 0.155 dict.items +│ │ │ │ │ │ │ ├─ 0.010 timer_key ../device_planner/frbc/frbc_state.py:346 +│ │ │ │ │ │ │ ├─ 0.009 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 +│ │ │ │ │ │ │ └─ 0.006 dict.get +│ │ │ │ │ │ ├─ 0.627 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ └─ 0.171 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 +│ │ │ │ │ │ ├─ 0.092 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ ├─ 0.024 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 +│ │ │ │ │ │ ├─ 0.016 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 +│ │ │ │ │ │ │ ├─ 0.014 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ └─ 0.002 len +│ │ │ │ │ │ ├─ 0.014 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 +│ │ │ │ │ │ │ ├─ 0.010 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 +│ │ │ │ │ │ │ │ ├─ 0.005 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:89 +│ │ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.002 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.001 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ └─ 0.001 dict.get +│ │ │ │ │ │ ├─ 0.010 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 +│ │ │ │ │ │ ├─ 0.008 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 +│ │ │ │ │ │ ├─ 0.005 list.append +│ │ │ │ │ │ └─ 0.002 S2FrbcDeviceStateWrapper.operation_mode_uses_factor ../device_planner/frbc/s2_frbc_device_state_wrapper.py:119 +│ │ │ │ │ ├─ 0.132 FrbcTimestep.get_final_states_within_fill_level_target ../device_planner/frbc/frbc_timestep.py:132 +│ │ │ │ │ │ ├─ 0.116 ../device_planner/frbc/frbc_timestep.py:136 +│ │ │ │ │ │ │ ├─ 0.101 FrbcTimestep.state_is_within_fill_level_target_range ../device_planner/frbc/frbc_timestep.py:146 +│ │ │ │ │ │ │ │ ├─ 0.067 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ ├─ 0.012 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ ├─ 0.011 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ └─ 0.011 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 +│ │ │ │ │ │ │ └─ 0.015 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ ├─ 0.011 FrbcTimestep.get_final_states ../device_planner/frbc/frbc_timestep.py:124 +│ │ │ │ │ │ │ ├─ 0.010 ../device_planner/frbc/frbc_timestep.py:125 +│ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_fill_level_target_distance ../device_planner/frbc/frbc_timestep.py:157 +│ │ │ │ │ │ └─ 0.001 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ ├─ 0.005 OperationModeProfileTree.convert_to_plan ../device_planner/frbc/operation_mode_profile_tree.py:316 +│ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ │ └─ 0.001 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 +│ │ │ │ │ ├─ 0.003 FrbcTimestep.clear ../device_planner/frbc/frbc_timestep.py:171 +│ │ │ │ │ ├─ 0.001 FrbcTimestep.set_targets ../device_planner/frbc/frbc_timestep.py:60 +│ │ │ │ │ ├─ 0.001 TargetProfile.get_elements ../common/target_profile.py:159 +│ │ │ │ │ └─ 0.001 find_best_end_state ../device_planner/frbc/operation_mode_profile_tree.py:308 +│ │ │ │ │ └─ 0.001 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ └─ 0.002 null_profile ../common/target_profile.py:162 +│ │ │ │ ├─ 0.001 [self] ../common/target_profile.py +│ │ │ │ └─ 0.001 TargetProfile.__init__ ../common/target_profile.py:26 +│ │ │ ├─ 0.005 TargetProfile.subtract ../common/target_profile.py:104 +│ │ │ │ ├─ 0.003 [self] ../common/target_profile.py +│ │ │ │ ├─ 0.001 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ └─ 0.001 isinstance +│ │ │ ├─ 0.003 [self] ../root_planner.py +│ │ │ ├─ 0.001 S2FrbcDevicePlanner.accept_proposal ../device_planner/frbc/s2_frbc_device_planner.py:163 +│ │ │ └─ 0.001 JouleProfile.subtract ../common/joule_profile.py:125 +│ │ ├─ 0.156 PlanningServiceImpl.create_controller_tree ../planning_service_impl.py:121 +│ │ │ ├─ 0.155 S2FrbcDevicePlanner.__init__ ../device_planner/frbc/s2_frbc_device_planner.py:33 +│ │ │ │ └─ 0.155 OperationModeProfileTree.__init__ ../device_planner/frbc/operation_mode_profile_tree.py:123 +│ │ │ │ └─ 0.155 OperationModeProfileTree.generate_timesteps ../device_planner/frbc/operation_mode_profile_tree.py:138 +│ │ │ │ ├─ 0.056 get_latest_before ../device_planner/frbc/operation_mode_profile_tree.py:203 +│ │ │ │ │ ├─ 0.042 datetime.replace +│ │ │ │ │ ├─ 0.012 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ ├─ 0.001 ../device_planner/frbc/operation_mode_profile_tree.py:179 +│ │ │ │ │ └─ 0.001 ../device_planner/frbc/operation_mode_profile_tree.py:154 +│ │ │ │ ├─ 0.048 get_usage_forecast_for_timestep ../device_planner/frbc/operation_mode_profile_tree.py:241 +│ │ │ │ │ ├─ 0.044 sub_profile ../device_planner/frbc/usage_forecast_util.py:58 +│ │ │ │ │ │ ├─ 0.034 UsageForecastElement.split ../device_planner/frbc/usage_forecast_util.py:20 +│ │ │ │ │ │ │ ├─ 0.023 UsageForecastElement.__init__ ../device_planner/frbc/usage_forecast_util.py:9 +│ │ │ │ │ │ │ │ ├─ 0.019 datetime.replace +│ │ │ │ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ │ │ │ ├─ 0.006 UsageForecastElement.date_in_element ../device_planner/frbc/usage_forecast_util.py:29 +│ │ │ │ │ │ │ │ ├─ 0.003 datetime.replace +│ │ │ │ │ │ │ │ └─ 0.003 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ │ │ │ └─ 0.005 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ │ │ ├─ 0.006 datetime.replace +│ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ │ │ └─ 0.001 UsageForecastElement.get_usage ../device_planner/frbc/usage_forecast_util.py:14 +│ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ ├─ 0.013 get_fill_level_target_for_timestep ../device_planner/frbc/operation_mode_profile_tree.py:220 +│ │ │ │ │ ├─ 0.010 get_elements_in_range ../device_planner/frbc/fill_level_target_util.py:45 +│ │ │ │ │ │ ├─ 0.008 datetime.replace +│ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/fill_level_target_util.py +│ │ │ │ │ └─ 0.003 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ ├─ 0.011 from_storage_usage_profile ../device_planner/frbc/usage_forecast_util.py:45 +│ │ │ │ │ ├─ 0.007 UsageForecastElement.__init__ ../device_planner/frbc/usage_forecast_util.py:9 +│ │ │ │ │ │ ├─ 0.005 datetime.replace +│ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ ├─ 0.011 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ ├─ 0.008 from_fill_level_target_profile ../device_planner/frbc/fill_level_target_util.py:28 +│ │ │ │ │ ├─ 0.007 [self] ../device_planner/frbc/fill_level_target_util.py +│ │ │ │ │ └─ 0.001 datetime.astimezone +│ │ │ │ ├─ 0.003 FrbcTimestep.__init__ ../device_planner/frbc/frbc_timestep.py:30 +│ │ │ │ ├─ 0.002 datetime.astimezone +│ │ │ │ ├─ 0.002 S2FrbcDeviceStateWrapper.get_leakage_behaviours ../device_planner/frbc/s2_frbc_device_state_wrapper.py:50 +│ │ │ │ └─ 0.001 S2FrbcDeviceStateWrapper.get_usage_forecasts ../device_planner/frbc/s2_frbc_device_state_wrapper.py:53 +│ │ │ │ └─ 0.001 S2FrbcDeviceState.get_usage_forecasts ../device_planner/frbc/s2_frbc_device_state.py:66 +│ │ │ └─ 0.001 JouleRangeProfile.__init__ ../common/joule_range_profile.py:42 +│ │ │ └─ 0.001 _create_element_array ../common/joule_range_profile.py:87 +│ │ │ └─ 0.001 ../common/joule_range_profile.py:92 +│ │ └─ 0.002 S2FrbcDevicePlanner.get_device_plan ../device_planner/frbc/s2_frbc_device_planner.py:188 +│ │ └─ 0.002 convert_plan_to_instructions ../device_planner/frbc/s2_frbc_device_planner.py:202 +│ ├─ 0.007 test_frbc_device.py:595 +│ │ └─ 0.007 create_device_state test_frbc_device.py:512 +│ │ └─ 0.007 create_ev_device_state test_frbc_device.py:57 +│ │ ├─ 0.004 create_recharge_system_description test_frbc_device.py:180 +│ │ │ ├─ 0.002 uuid4 uuid.py:718 +│ │ │ │ ├─ 0.001 urandom +│ │ │ │ └─ 0.001 UUID.__init__ uuid.py:138 +│ │ │ └─ 0.002 inner s2python/validate_values_mixin.py:42 +│ │ │ └─ 0.002 FRBCActuatorDescription.__init__ pydantic/main.py:204 +│ │ │ ├─ 0.001 FRBCActuatorDescription.validate_timers_in_transitions s2python/frbc/frbc_actuator_description.py:35 +│ │ │ │ └─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ └─ 0.001 FRBCActuatorDescription.validate_operation_mode_elements_have_all_supported_commodities s2python/frbc/frbc_actuator_description.py:104 +│ │ │ └─ 0.001 len +│ │ ├─ 0.001 create_driving_system_description test_frbc_device.py:380 +│ │ │ └─ 0.001 inner s2python/validate_values_mixin.py:42 +│ │ │ └─ 0.001 FRBCSystemDescription.__init__ pydantic/main.py:204 +│ │ │ └─ 0.001 FRBCActuatorDescription.validate_timers_in_transitions s2python/frbc/frbc_actuator_description.py:35 +│ │ ├─ 0.001 create_recharge_fill_level_target_profile test_frbc_device.py:351 +│ │ │ └─ 0.001 inner s2python/validate_values_mixin.py:42 +│ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.__init__ pydantic/main.py:204 +│ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.validate_start_end_order s2python/frbc/frbc_fill_level_target_profile_element.py:26 +│ │ └─ 0.001 create_recharge_leakage_behaviour test_frbc_device.py:321 +│ └─ 0.001 ClusterPlan.get_joule_profile ../cluster_plan.py:667 +│ └─ 0.001 JouleProfile.add ../common/joule_profile.py:110 +├─ 1.263 _find_and_load :1022 +│ └─ 1.263 _find_and_load_unlocked :987 +│ ├─ 0.720 _load_unlocked :664 +│ │ └─ 0.720 SourceFileLoader.exec_module :877 +│ │ └─ 0.720 _call_with_frames_removed :233 +│ │ ├─ 0.683 ../device_planner/frbc/s2_frbc_device_planner.py:1 +│ │ │ └─ 0.683 _find_and_load :1022 +│ │ │ └─ 0.683 _find_and_load_unlocked :987 +│ │ │ └─ 0.683 _load_unlocked :664 +│ │ │ └─ 0.683 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.683 _call_with_frames_removed :233 +│ │ │ ├─ 0.680 ../device_planner/frbc/operation_mode_profile_tree.py:1 +│ │ │ │ ├─ 0.470 _find_and_load :1022 +│ │ │ │ │ └─ 0.470 _find_and_load_unlocked :987 +│ │ │ │ │ ├─ 0.410 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.410 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ ├─ 0.409 _call_with_frames_removed :233 +│ │ │ │ │ │ │ ├─ 0.265 matplotlib/pyplot.py:1 +│ │ │ │ │ │ │ │ ├─ 0.214 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.214 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.214 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.214 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.214 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.116 matplotlib/figure.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.111 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 matplotlib/projections/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.066 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 matplotlib/axes/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.039 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.037 matplotlib/axes/_axes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/tri/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/tri/_tricontour.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TriContourSet.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TriContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/tri/_triinterpolate.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/tri/_tripcolor.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/quiver.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Barbs.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Barbs._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sub re.py:202 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/axes/_secondary_axes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/axes/_base.py:747 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/category.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 dateutil/parser/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dateutil/parser/_parser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __getattr__ dateutil/__init__.py:12 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 import_module importlib/__init__.py:108 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _gcd_import :1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/tz/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/tz/tz.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 six.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/legend.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/dates.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/rrule.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/mlab.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/inset.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 Axes matplotlib/axes/_axes.py:67 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _preprocess_data matplotlib/__init__.py:1447 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _add_data_doc matplotlib/__init__.py:1403 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 len +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 min +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.pop +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 make_keyword_only matplotlib/_api/deprecation.py:414 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/_api/deprecation.py:456 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Parameter.replace inspect.py:2703 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isidentifier +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Axes.__init_subclass__ matplotlib/axes/_base.py:747 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 callable +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 matplotlib/axes/_base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 matplotlib/axis.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 XAxis.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 XAxis._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 deprecate_privatize_attribute.__set_name__ matplotlib/_api/deprecation.py:240 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 deprecate matplotlib/_api/deprecation.py:126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/table.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Cell.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Cell._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 matplotlib/offsetbox.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 OffsetImage.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 OffsetImage._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/offsetbox.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AuxTransformBox matplotlib/offsetbox.py:792 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _AxesBase.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _AxesBase._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_annotations inspect.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AxesBase matplotlib/axes/_base.py:549 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _axis_method_wrapper.__init__ matplotlib/axes/_base.py:52 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.replace +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 mpl_toolkits/mplot3d/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 mpl_toolkits/mplot3d/axes3d.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 mpl_toolkits/mplot3d/art3d.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 Poly3DCollection.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 Poly3DCollection._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__init__ sre_parse.py:112 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 mpl_toolkits/mplot3d/axis3d.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axis.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axis._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Axes3D.__init_subclass__ matplotlib/axes/_base.py:747 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Axes3D.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Axes3D._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _finddoc inspect.py:663 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _findclass inspect.py:653 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes3D mpl_toolkits/mplot3d/axes3d.py:41 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _axis_method_wrapper.__init__ matplotlib/axes/_base.py:52 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _preprocess_data matplotlib/__init__.py:1447 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 matplotlib/projections/geo.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 AitoffAxes.__init_subclass__ matplotlib/axes/_base.py:747 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 AitoffAxes.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 AitoffAxes._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 min +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:169 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.008 matplotlib/projections/polar.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 PolarAxes.__init_subclass__ matplotlib/axes/_base.py:747 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 RadialAxis.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RadialAxis._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 callable +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 Figure.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Figure._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dir +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ ├─ 0.092 matplotlib/colorbar.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.089 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.088 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.087 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 matplotlib/contour.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.047 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 matplotlib/backend_bases.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.045 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.044 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.043 matplotlib/text.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.036 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.035 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 matplotlib/patches.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 StepPatch.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 StepPatch._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.pop +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _simple sre_compile.py:447 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__len__ sre_parse.py:161 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/patches.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 BoxStyle.__init_subclass__ matplotlib/patches.py:2293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 BoxStyle.pprint_styles matplotlib/patches.py:2335 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/patches.py:2339 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/patches.py:2351 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/font_manager.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_fontmanager matplotlib/font_manager.py:1625 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 json_load matplotlib/font_manager.py:1030 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 load json/__init__.py:274 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads json/__init__.py:299 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 JSONDecoder.decode json/decoder.py:332 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 JSONDecoder.raw_decode json/decoder.py:343 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _json_decode matplotlib/font_manager.py:989 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontEntry.__init__ :2 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wrapper matplotlib/__init__.py:336 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_cachedir matplotlib/__init__.py:579 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_config_or_cache_dir matplotlib/__init__.py:519 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.resolve pathlib.py:1064 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 realpath posixpath.py:392 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _joinrealpath posixpath.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 lstat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __getattr__ matplotlib/_api/__init__.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_afm.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.replace +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/textpath.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/_text_helpers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._get_field dataclasses.py:722 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field.__init__ dataclasses.py:286 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/dviread.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/mathtext.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/_mathtext.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:2249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 Text.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Text._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 unwrap inspect.py:612 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_wrapper inspect.py:632 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inspect.py:2412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/backend_tools.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/layout_engine.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.037 matplotlib/collections.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 EventCollection.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.029 EventCollection._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] re.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/artist.py:169 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Signature.__init__ inspect.py:2920 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 matplotlib/lines.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Line2D.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Line2D._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/spines.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ └─ 0.006 matplotlib/image.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.006 _ImageBase.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ └─ 0.006 _ImageBase._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 +│ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 +│ │ │ │ │ │ │ │ │ ├─ 0.001 is_alias matplotlib/artist.py:1536 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip +│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 +│ │ │ │ │ │ │ │ ├─ 0.042 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ ├─ 0.041 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 matplotlib/style/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ ├─ 0.040 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.040 matplotlib/style/core.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.040 read_style_directory matplotlib/style/core.py:198 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.040 _rc_params_in_file matplotlib/__init__.py:884 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.038 RcParams.__setitem__ matplotlib/__init__.py:748 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.035 validate_cycler matplotlib/rcsetup.py:814 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.033 _DunderChecker.visit ast.py:414 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit_Constant ast.py:430 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 iter_fields ast.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse ast.py:33 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 validator matplotlib/rcsetup.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_font_properties matplotlib/rcsetup.py:426 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._inner pyparsing/util.py:372 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseCache pyparsing/core.py:973 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseCache pyparsing/core.py:973 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5172 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5062 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseCache pyparsing/core.py:973 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseCache pyparsing/core.py:973 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseCache pyparsing/core.py:973 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseCache pyparsing/core.py:973 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseResults.__init__ pyparsing/results.py:176 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] matplotlib/__init__.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ └─ 0.001 hasattr +│ │ │ │ │ │ │ │ ├─ 0.008 _copy_docstring_and_deprecators matplotlib/pyplot.py:176 +│ │ │ │ │ │ │ │ │ ├─ 0.006 _add_pyplot_note matplotlib/pyplot.py:209 +│ │ │ │ │ │ │ │ │ │ ├─ 0.005 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.pop +│ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split +│ │ │ │ │ │ │ │ │ ├─ 0.001 make_keyword_only matplotlib/_api/deprecation.py:414 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_api/deprecation.py:456 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.replace inspect.py:2703 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ParameterKind.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/pyplot.py +│ │ │ │ │ │ │ │ └─ 0.001 Enum.__call__ enum.py:359 +│ │ │ │ │ │ │ │ └─ 0.001 Enum._create_ enum.py:483 +│ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ │ │ │ └─ 0.144 pint/__init__.py:1 +│ │ │ │ │ │ │ ├─ 0.143 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.143 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ ├─ 0.142 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.142 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.142 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.142 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.142 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.142 pint/delegates/__init__.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.140 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 pint/delegates/txt_defparser/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.140 pint/delegates/txt_defparser/defparser.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.130 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.094 pint/delegates/base_defparser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.093 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 pint/facets/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.092 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.086 pint/facets/context/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 pint/facets/context/definitions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.084 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 pint/facets/plain/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.083 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.083 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.081 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.079 pint/facets/plain/definitions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.074 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.069 pint/_typing.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 pint/compat.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.068 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 numpy/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 numpy/lib/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 numpy/lib/index_tricks.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 numpy/matrixlib/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/matrixlib/defmatrix.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 numpy/linalg/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 numpy/linalg/linalg.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 numpy/_typing/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/_typing/_array_like.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _UnionGenericAlias.__getitem__ typing.py:1046 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__getitem__ typing.py:1046 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.copy_with typing.py:1083 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _should_collect_from_parameters typing_extensions.py:154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_dtype_like.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing_extensions.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _should_collect_from_parameters typing_extensions.py:154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__hash__ typing.py:1284 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_char_codes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.__getitem__ typing.py:407 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.Literal typing.py:532 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _LiteralGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _LiteralGenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _flatten_literal_params typing.py:284 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_typing/_shape.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :134 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/twodim_base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _verbose_message :244 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/npyio.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/scimath.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/type_check.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ismethod numpy/_utils/_inspect.py:13 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/ma/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/ma/core.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.__init__ numpy/ma/core.py:8389 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.getdoc numpy/ma/core.py:8394 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ma/extras.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.__init__ numpy/ma/extras.py:233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.getdoc numpy/ma/extras.py:237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 doc_note numpy/ma/core.py:115 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/random/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 numpy/random/_pickle.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ExtensionFileLoader.exec_module :1182 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner contextlib.py:76 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SeedSequence.generate_state +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/polynomial/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/polynomial/polynomial.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/fft/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ctypeslib.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_scalar_type_map numpy/ctypeslib.py:360 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ctypeslib.py:371 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 numpy/__config__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 numpy/core/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 numpy/core/multiarray.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 numpy/core/overrides.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 create_dynamic +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/core/numeric.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/shape_base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/fromnumeric.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] numpy/core/numeric.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_add_newdocs.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 add_newdoc numpy/core/function_base.py:497 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/core/function_base.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_internal.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ctypes/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/core/getlimits.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/core/defchararray.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/numerictypes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/_type_aliases.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/compat/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/compat/py3k.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_globals.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_utils/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _register_known_types numpy/core/getlimits.py:162 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/units.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 pint/util.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/util.py:921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sre_parse.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/converters.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 NamedDefinition.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 NamedDefinition._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 NamedDefinition._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition._get_field dataclasses.py:722 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pint/facets/plain/objects.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/plain/unit.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ContextDefinition._hash_add dataclasses.py:842 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/system/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/system/definitions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/system/objects.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SystemQuantity.__init_subclass__ typing.py:1350 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/nonmultiplicative/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/nonmultiplicative/registry.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/group/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/group/objects.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupQuantity.__init_subclass__ typing.py:1350 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/registry.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/quantity.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/numpy_func.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 implement_func pint/facets/numpy/numpy_func.py:250 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 flexcache/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 flexcache/flexcache.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 NameByFileContent.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 NameByFileContent._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 NameByFileContent._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] dataclasses.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:1049 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DiskCacheByMTime flexcache/flexcache.py:463 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 version importlib/metadata/__init__.py:989 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 distribution importlib/metadata/__init__.py:963 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Distribution.from_name importlib/metadata/__init__.py:532 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib/metadata/__init__.py:580 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ └─ 0.007 flexparser/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 flexparser/flexparser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 BOF.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 BOF._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 BOF._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _recursive_repr dataclasses.py:227 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Statement._get_field dataclasses.py:722 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 version importlib/metadata/__init__.py:989 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 message_from_string email/__init__.py:32 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parser.parsestr email/parser.py:59 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parser.parse email/parser.py:41 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser.feed email/feedparser.py:173 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser._call_parse email/feedparser.py:178 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser._parsegen email/feedparser.py:218 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser._parse_headers email/feedparser.py:471 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Compat32.header_source_parse email/_policybase.py:301 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip +│ │ │ │ │ │ │ │ │ │ └─ 0.010 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.010 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.010 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ ├─ 0.009 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 pint/delegates/txt_defparser/context.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pint/delegates/txt_defparser/plain.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 DimensionDefinition.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 DimensionDefinition._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DimensionDefinition._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/system.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/defaults.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginDefaults.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginDefaults._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/block.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/txt_defparser/group.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginGroup pint/delegates/txt_defparser/group.py:30 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader._check_name_wrapper :542 +│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.002 pint/delegates/formatter/__init__.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/full.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/_to_register.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/plain.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 +│ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 pint/registry.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ └─ 0.001 GenericContextRegistry.__class_getitem__ typing.py:1323 +│ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 +│ │ │ │ │ │ │ │ └─ 0.001 _getframe +│ │ │ │ │ │ │ └─ 0.001 [self] pint/__init__.py +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ └─ 0.060 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.060 _find_and_load :1022 +│ │ │ │ │ └─ 0.060 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.060 _load_unlocked :664 +│ │ │ │ │ └─ 0.060 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.059 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.059 matplotlib/__init__.py:1 +│ │ │ │ │ │ ├─ 0.039 _handle_fromlist :1053 +│ │ │ │ │ │ │ └─ 0.039 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.039 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.039 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.039 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.039 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ ├─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.037 matplotlib/rcsetup.py:1 +│ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ ├─ 0.036 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.018 matplotlib/_fontconfig_pattern.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 pyparsing/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ ├─ 0.017 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 pyparsing/core.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 srange pyparsing/core.py:6071 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore.parseImpl pyparsing/core.py:5062 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pyparsing/core.py:6208 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseElementEnhance.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Forward.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MatchFirst.__add__ pyparsing/core.py:1442 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.__eq__ pyparsing/core.py:2009 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Keyword.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _CallableType.__getitem__ typing.py:1194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserElement pyparsing/core.py:390 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 replaced_by_pep8 pyparsing/util.py:361 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.__init__ pyparsing/core.py:5779 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.leave_whitespace pyparsing/core.py:4658 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.copy pyparsing/core.py:519 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 pyparsing/common.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 pyparsing_common pyparsing/common.py:8 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Combine.__init__ pyparsing/core.py:5779 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Combine.leave_whitespace pyparsing/core.py:4658 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MatchFirst.leave_whitespace pyparsing/core.py:3880 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 And.leave_whitespace pyparsing/core.py:3880 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.leave_whitespace pyparsing/core.py:4658 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.leave_whitespace pyparsing/core.py:4658 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.leave_whitespace pyparsing/core.py:4658 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3888 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.copy pyparsing/core.py:519 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3888 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.copy pyparsing/core.py:3972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.copy pyparsing/core.py:519 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DelimitedList.__init__ pyparsing/core.py:5183 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:5972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:5755 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:4615 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.__init__ pyparsing/core.py:2823 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collapse_string_to_ranges pyparsing/util.py:209 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 escape_re_range_char pyparsing/util.py:241 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pyparsing/helpers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pyparsing/helpers.py:649 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 make_html_tags pyparsing/helpers.py:605 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _makeTags pyparsing/helpers.py:547 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.__init__ pyparsing/core.py:2823 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.name pyparsing/core.py:1940 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.default_name pyparsing/core.py:1903 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word._generateDefaultName pyparsing/core.py:2941 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 charsAsStr pyparsing/core.py:2942 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collapse_string_to_ranges pyparsing/util.py:209 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 no_escape_re_range_char pyparsing/util.py:244 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pyparsing/exceptions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lazyclassproperty.__get__ pyparsing/unicode.py:14 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ExceptionWordUnicodeSet.alphanums pyparsing/unicode.py:80 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lazyclassproperty.__get__ pyparsing/unicode.py:14 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ExceptionWordUnicodeSet.alphas pyparsing/unicode.py:70 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lazyclassproperty.__get__ pyparsing/unicode.py:14 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ExceptionWordUnicodeSet._chars_for_ranges pyparsing/unicode.py:55 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/unicode.py:63 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/util.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 acquire_lock +│ │ │ │ │ │ │ │ │ ├─ 0.016 matplotlib/colors.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.012 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 PIL/Image.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 PIL/ExifTags.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PIL/ExifTags.py:295 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:446 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Base PIL/ExifTags.py:21 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ImageMode.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/scale.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/transforms.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PIL/PngImagePlugin.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ImagePalette.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ └─ 0.001 make_norm_from_scale matplotlib/colors.py:2562 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_enums.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 __prepare__ enum.py:165 +│ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__init__ enum.py:82 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ ├─ 0.010 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.010 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.010 matplotlib/cm.py:1 +│ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/colorizer.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/artist.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Artist._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sub re.py:202 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector matplotlib/artist.py:1407 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist.__init_subclass__ matplotlib/artist.py:125 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist._update_set_signature_and_docstring matplotlib/artist.py:158 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ParameterKind.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_cm_multivar.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_cm_multivar.py:148 +│ │ │ │ │ │ │ │ │ └─ 0.001 from_list matplotlib/colors.py:1080 +│ │ │ │ │ │ │ │ │ └─ 0.001 column_stack numpy/lib/shape_base.py:612 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ ├─ 0.003 _gen_cmap_registry matplotlib/cm.py:32 +│ │ │ │ │ │ │ │ ├─ 0.002 from_list matplotlib/colors.py:1080 +│ │ │ │ │ │ │ │ │ ├─ 0.001 linspace numpy/core/function_base.py:24 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 arange +│ │ │ │ │ │ │ │ │ └─ 0.001 to_rgba_array matplotlib/colors.py:418 +│ │ │ │ │ │ │ │ │ └─ 0.001 ones numpy/core/numeric.py:136 +│ │ │ │ │ │ │ │ └─ 0.001 LinearSegmentedColormap.reversed matplotlib/colors.py:1133 +│ │ │ │ │ │ │ │ └─ 0.001 LinearSegmentedColormap.__init__ matplotlib/colors.py:1011 +│ │ │ │ │ │ │ │ └─ 0.001 LinearSegmentedColormap.__init__ matplotlib/colors.py:691 +│ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/cm.py +│ │ │ │ │ │ ├─ 0.006 _rc_params_in_file matplotlib/__init__.py:884 +│ │ │ │ │ │ │ ├─ 0.004 RcParams.__setitem__ matplotlib/__init__.py:748 +│ │ │ │ │ │ │ │ ├─ 0.003 validate_font_properties matplotlib/rcsetup.py:426 +│ │ │ │ │ │ │ │ │ └─ 0.003 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 +│ │ │ │ │ │ │ │ │ ├─ 0.002 And._inner pyparsing/util.py:372 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 And.parse_string pyparsing/core.py:1145 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 And.streamline pyparsing/core.py:4073 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.streamline pyparsing/core.py:4684 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.streamline pyparsing/core.py:4684 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IndentedBlock.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck +│ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5172 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5062 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re_match pyparsing/core.py:3127 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re pyparsing/core.py:3106 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ └─ 0.001 _make_fontconfig_parser matplotlib/_fontconfig_pattern.py:55 +│ │ │ │ │ │ │ │ │ └─ 0.001 comma_separated matplotlib/_fontconfig_pattern.py:57 +│ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__add__ pyparsing/core.py:5977 +│ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__add__ pyparsing/core.py:1442 +│ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 +│ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:3846 +│ │ │ │ │ │ │ │ └─ 0.001 validate_color matplotlib/rcsetup.py:332 +│ │ │ │ │ │ │ │ └─ 0.001 is_color_like matplotlib/colors.py:223 +│ │ │ │ │ │ │ │ └─ 0.001 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ └─ 0.001 _to_rgba_no_colorcycle matplotlib/colors.py:324 +│ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 +│ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__init__ sre_parse.py:225 +│ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 +│ │ │ │ │ │ │ ├─ 0.001 str.split +│ │ │ │ │ │ │ └─ 0.001 _strip_comment matplotlib/cbook.py:468 +│ │ │ │ │ │ ├─ 0.002 _check_versions matplotlib/__init__.py:245 +│ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.001 import_module importlib/__init__.py:108 +│ │ │ │ │ │ │ └─ 0.001 _gcd_import :1038 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 +│ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 +│ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ ├─ 0.001 __build_class__ +│ │ │ │ │ │ └─ 0.001 matplotlib/__init__.py:1012 +│ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 _classify_pyc :585 +│ │ │ │ └─ 0.210 RegistryMeta.__call__ pint/facets/plain/registry.py:156 +│ │ │ │ └─ 0.210 UnitRegistry._after_init pint/facets/system/registry.py:70 +│ │ │ │ └─ 0.210 UnitRegistry._after_init pint/facets/group/registry.py:58 +│ │ │ │ └─ 0.210 UnitRegistry._after_init pint/facets/plain/registry.py:328 +│ │ │ │ ├─ 0.142 UnitRegistry.load_definitions pint/facets/plain/registry.py:580 +│ │ │ │ │ ├─ 0.131 DefParser.parse_file pint/delegates/txt_defparser/defparser.py:121 +│ │ │ │ │ │ └─ 0.131 parse flexparser/flexparser.py:1610 +│ │ │ │ │ │ ├─ 0.130 _PintParser.parse flexparser/flexparser.py:1218 +│ │ │ │ │ │ │ └─ 0.130 _PintParser.parse_file pint/delegates/txt_defparser/defparser.py:53 +│ │ │ │ │ │ │ └─ 0.130 _PintParser.parse_file flexparser/flexparser.py:1265 +│ │ │ │ │ │ │ └─ 0.130 _PintParser.parse_bytes flexparser/flexparser.py:1248 +│ │ │ │ │ │ │ └─ 0.130 PintRootBlock.consume_body_closing flexparser/flexparser.py:1011 +│ │ │ │ │ │ │ └─ 0.130 PintRootBlock.consume_body flexparser/flexparser.py:981 +│ │ │ │ │ │ │ ├─ 0.063 UnitDefinition.consume flexparser/flexparser.py:819 +│ │ │ │ │ │ │ │ ├─ 0.050 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 +│ │ │ │ │ │ │ │ │ ├─ 0.035 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 +│ │ │ │ │ │ │ │ │ │ ├─ 0.026 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.026 ParserHelper.from_string pint/util.py:749 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 EvalTreeNode.evaluate pint/pint_eval.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 EvalTreeNode.evaluate pint/pint_eval.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 EvalTreeNode.evaluate pint/pint_eval.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.eval_token pint/util.py:732 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.from_word pint/util.py:713 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.__init__ pint/util.py:709 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ParserHelper.eval_token pint/util.py:732 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserHelper.from_word pint/util.py:713 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserHelper.__init__ pint/util.py:709 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ParserHelper.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _power pint/pint_eval.py:51 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ParserHelper.__mul__ pint/util.py:854 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ParserHelper.copy pint/util.py:803 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.__copy__ pint/util.py:798 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__copy__ pint/util.py:616 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.operate pint/util.py:830 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 build_eval_tree pint/pint_eval.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _plain_tokenizer pint/pint_eval.py:91 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _tokenize tokenize.py:431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] tokenize.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.strip +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tokenize tokenize.py:406 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 detect_encoding tokenize.py:297 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 find_cookie tokenize.py:327 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _build_eval_tree pint/pint_eval.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/pint_eval.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 string_preprocessor pint/util.py:928 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Pattern.sub +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _subx re.py:324 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Number.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.keys _collections_abc.py:836 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 KeysView.__iter__ _collections_abc.py:885 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 pint/delegates/txt_defparser/plain.py:148 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/delegates/txt_defparser/plain.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.strip +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/delegates/txt_defparser/plain.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__init__ :2 +│ │ │ │ │ │ │ │ │ ├─ 0.011 DerivedDimensionDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:231 +│ │ │ │ │ │ │ │ │ │ ├─ 0.010 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.010 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 ParserHelper.from_string pint/util.py:749 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 build_eval_tree pint/pint_eval.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _plain_tokenizer pint/pint_eval.py:91 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _tokenize tokenize.py:431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 tokenize tokenize.py:406 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 detect_encoding tokenize.py:297 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 find_cookie tokenize.py:327 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] tokenize.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _power pint/pint_eval.py:51 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__pow__ pint/util.py:869 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.__init__ pint/util.py:709 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 string_preprocessor pint/util.py:928 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 DerivedDimensionDefinition.__init__ :2 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 DerivedDimensionDefinition.__post_init__ pint/facets/plain/definitions.py:242 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 KeysView.__iter__ _collections_abc.py:885 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__iter__ pint/util.py:549 +│ │ │ │ │ │ │ │ │ └─ 0.004 PrefixDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:84 +│ │ │ │ │ │ │ │ │ └─ 0.004 ParserConfig.to_number pint/delegates/base_defparser.py:54 +│ │ │ │ │ │ │ │ │ └─ 0.004 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 +│ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.from_string pint/util.py:749 +│ │ │ │ │ │ │ │ │ └─ 0.004 build_eval_tree pint/pint_eval.py:528 +│ │ │ │ │ │ │ │ │ └─ 0.004 _plain_tokenizer pint/pint_eval.py:91 +│ │ │ │ │ │ │ │ │ └─ 0.004 _tokenize tokenize.py:431 +│ │ │ │ │ │ │ │ │ ├─ 0.003 _compile tokenize.py:99 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] tokenize.py +│ │ │ │ │ │ │ │ └─ 0.013 StatementIterator.peek flexparser/flexparser.py:699 +│ │ │ │ │ │ │ │ ├─ 0.011 StatementIterator._get_next flexparser/flexparser.py:687 +│ │ │ │ │ │ │ │ │ ├─ 0.010 StatementIterator._get_next_strip flexparser/flexparser.py:671 +│ │ │ │ │ │ │ │ │ │ ├─ 0.005 Spliter.__next__ flexparser/flexparser.py:532 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 Statement.from_statement_iterator_element flexparser/flexparser.py:181 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Statement.set_position flexparser/flexparser.py:207 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ ├─ 0.058 GroupDefinition.consume flexparser/flexparser.py:1033 +│ │ │ │ │ │ │ │ ├─ 0.030 GroupDefinition.consume_body_closing flexparser/flexparser.py:1011 +│ │ │ │ │ │ │ │ │ ├─ 0.021 GroupDefinition.consume_body flexparser/flexparser.py:981 +│ │ │ │ │ │ │ │ │ │ ├─ 0.020 UnitDefinition.consume flexparser/flexparser.py:819 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.020 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 ParserHelper.from_string pint/util.py:749 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 build_eval_tree pint/pint_eval.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _plain_tokenizer pint/pint_eval.py:91 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _tokenize tokenize.py:431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 EvalTreeNode.evaluate pint/pint_eval.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 EvalTreeNode.evaluate pint/pint_eval.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.eval_token pint/util.py:732 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.from_word pint/util.py:713 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__truediv__ pint/util.py:875 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.operate pint/util.py:830 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 string_preprocessor pint/util.py:928 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _subx re.py:324 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/plain.py:148 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.keys _collections_abc.py:836 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 ForwardRelation.from_string_and_config pint/delegates/txt_defparser/context.py:59 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ForwardRelation._from_string_and_context_sep pint/delegates/txt_defparser/context.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 pint/delegates/txt_defparser/context.py:47 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ParserHelper.from_string pint/util.py:749 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 build_eval_tree pint/pint_eval.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _plain_tokenizer pint/pint_eval.py:91 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 tokenize tokenize.py:406 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 detect_encoding tokenize.py:297 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] tokenize.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 find_cookie tokenize.py:327 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.replace +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 string_preprocessor pint/util.py:928 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/delegates/base_defparser.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/delegates/txt_defparser/context.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitDefinition.set_position flexparser/flexparser.py:207 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BidirectionalRelation.from_string_and_config pint/delegates/txt_defparser/context.py:75 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BidirectionalRelation._from_string_and_context_sep pint/delegates/txt_defparser/context.py:35 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/txt_defparser/context.py:47 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.from_string pint/util.py:749 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 build_eval_tree pint/pint_eval.py:528 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _plain_tokenizer pint/pint_eval.py:91 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ └─ 0.009 GroupDefinition.consume_closing flexparser/flexparser.py:997 +│ │ │ │ │ │ │ │ │ ├─ 0.005 ContextDefinition.closing_classes flexparser/flexparser.py:954 +│ │ │ │ │ │ │ │ │ │ └─ 0.005 ContextDefinition.specialization flexparser/flexparser.py:127 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 ContextDefinition._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 DirectiveBlock._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Block._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ ├─ 0.003 EndDirectiveBlock.consume flexparser/flexparser.py:819 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator.peek flexparser/flexparser.py:699 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 StatementIterator._get_next flexparser/flexparser.py:687 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 StatementIterator._get_next_strip flexparser/flexparser.py:671 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spliter.__next__ flexparser/flexparser.py:532 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search +│ │ │ │ │ │ │ │ │ │ └─ 0.001 deque.append +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ └─ 0.028 SystemDefinition.consume_opening flexparser/flexparser.py:967 +│ │ │ │ │ │ │ │ ├─ 0.027 SystemDefinition.opening_classes flexparser/flexparser.py:936 +│ │ │ │ │ │ │ │ │ ├─ 0.020 SystemDefinition.specialization flexparser/flexparser.py:127 +│ │ │ │ │ │ │ │ │ │ ├─ 0.014 SystemDefinition._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 DirectiveBlock._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getattr +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Block._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _summarize flexparser/flexparser.py:94 +│ │ │ │ │ │ │ │ │ ├─ 0.005 _yield_types flexparser/flexparser.py:369 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 isclass inspect.py:191 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 issubclass +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ └─ 0.001 BeginContext.consume flexparser/flexparser.py:819 +│ │ │ │ │ │ │ ├─ 0.008 PintRootBlock.body_classes flexparser/flexparser.py:945 +│ │ │ │ │ │ │ │ ├─ 0.005 _yield_types flexparser/flexparser.py:369 +│ │ │ │ │ │ │ │ │ ├─ 0.003 _yield_types flexparser/flexparser.py:369 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 isclass inspect.py:191 +│ │ │ │ │ │ │ │ │ ├─ 0.001 get_args typing.py:1929 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ └─ 0.003 PintRootBlock.specialization flexparser/flexparser.py:127 +│ │ │ │ │ │ │ │ └─ 0.003 PintRootBlock._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ └─ 0.003 RootBlock._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py +│ │ │ │ │ │ │ │ └─ 0.001 Block._specialization flexparser/flexparser.py:107 +│ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py +│ │ │ │ │ │ └─ 0.001 flexparser/flexparser.py:1694 +│ │ │ │ │ │ └─ 0.001 PintRootBlock.filter_by flexparser/flexparser.py:916 +│ │ │ │ │ │ └─ 0.001 flexparser/flexparser.py:920 +│ │ │ │ │ │ └─ 0.001 PintRootBlock.__iter__ flexparser/flexparser.py:889 +│ │ │ │ │ ├─ 0.008 UnitRegistry._helper_dispatch_adder pint/facets/plain/registry.py:486 +│ │ │ │ │ │ ├─ 0.004 UnitRegistry._add_system pint/facets/system/registry.py:87 +│ │ │ │ │ │ │ └─ 0.004 System.from_definition pint/facets/system/objects.py:148 +│ │ │ │ │ │ │ └─ 0.004 UnitRegistry.get_root_units pint/facets/plain/registry.py:802 +│ │ │ │ │ │ │ ├─ 0.003 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 +│ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 +│ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ ├─ 0.001 UnitRegistry._add_group pint/facets/group/registry.py:89 +│ │ │ │ │ │ │ └─ 0.001 Group.from_definition pint/facets/group/objects.py:196 +│ │ │ │ │ │ │ └─ 0.001 Group.__init__ pint/facets/group/objects.py:61 +│ │ │ │ │ │ └─ 0.001 UnitRegistry.add_context pint/facets/context/registry.py:79 +│ │ │ │ │ │ └─ 0.001 Context.from_definition pint/facets/context/objects.py:168 +│ │ │ │ │ │ └─ 0.001 UnitRegistry.get_dimensionality pint/facets/plain/registry.py:710 +│ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 +│ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ └─ 0.001 _is_dim pint/util.py:944 +│ │ │ │ │ ├─ 0.002 DefParser.iter_parsed_project pint/delegates/txt_defparser/defparser.py:75 +│ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 +│ │ │ │ │ │ └─ 0.001 ContextDefinition.errors flexparser/flexparser.py:922 +│ │ │ │ │ │ └─ 0.001 ContextDefinition.filter_by flexparser/flexparser.py:916 +│ │ │ │ │ │ └─ 0.001 flexparser/flexparser.py:920 +│ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ └─ 0.068 UnitRegistry._build_cache pint/facets/context/registry.py:119 +│ │ │ │ └─ 0.068 UnitRegistry._build_cache pint/facets/plain/registry.py:605 +│ │ │ │ ├─ 0.021 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 +│ │ │ │ │ ├─ 0.013 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ ├─ 0.011 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ ├─ 0.008 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitsContainer.__getitem__ pint/util.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__contains__ collections/__init__.py:1000 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 collections/__init__.py:1001 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 +│ │ │ │ │ │ │ │ ├─ 0.003 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ │ │ ├─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 +│ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.is_base pint/facets/plain/definitions.py:190 +│ │ │ │ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ │ └─ 0.002 [self] pint/facets/plain/registry.py +│ │ │ │ │ ├─ 0.003 ParserHelper.__eq__ pint/util.py:820 +│ │ │ │ │ │ ├─ 0.002 ParserHelper.__eq__ pint/util.py:574 +│ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py +│ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck +│ │ │ │ │ │ └─ 0.001 [self] pint/util.py +│ │ │ │ │ ├─ 0.002 ParserHelper.__hash__ pint/util.py:806 +│ │ │ │ │ │ ├─ 0.001 ParserHelper.__hash__ pint/util.py:561 +│ │ │ │ │ │ │ └─ 0.001 udict.items +│ │ │ │ │ │ └─ 0.001 [self] pint/util.py +│ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 +│ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ └─ 0.001 pint/facets/plain/registry.py:911 +│ │ │ │ ├─ 0.019 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ └─ 0.019 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ └─ 0.019 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ ├─ 0.012 [self] pint/facets/plain/registry.py +│ │ │ │ │ ├─ 0.005 str.startswith +│ │ │ │ │ └─ 0.002 ChainMap.__contains__ collections/__init__.py:1000 +│ │ │ │ ├─ 0.015 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 +│ │ │ │ │ ├─ 0.011 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ └─ 0.011 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ ├─ 0.010 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ │ ├─ 0.005 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 +│ │ │ │ │ │ │ │ │ ├─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 +│ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 +│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ └─ 0.005 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ │ ├─ 0.003 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 +│ │ │ │ │ │ │ │ └─ 0.003 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ │ └─ 0.003 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ │ │ │ │ ├─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py +│ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 +│ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 +│ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 +│ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 +│ │ │ │ │ ├─ 0.002 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 +│ │ │ │ │ │ └─ 0.002 UnitsContainer.__init__ pint/util.py:452 +│ │ │ │ │ │ ├─ 0.001 udict.items +│ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 +│ │ │ │ │ │ └─ 0.001 _abc_instancecheck +│ │ │ │ │ ├─ 0.001 ParserHelper.__len__ pint/util.py:552 +│ │ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:820 +│ │ │ │ ├─ 0.005 ParserHelper.from_word pint/util.py:713 +│ │ │ │ │ ├─ 0.003 ParserHelper.__init__ pint/util.py:709 +│ │ │ │ │ │ └─ 0.003 ParserHelper.__init__ pint/util.py:452 +│ │ │ │ │ └─ 0.002 [self] pint/util.py +│ │ │ │ ├─ 0.004 solve_dependencies pint/util.py:305 +│ │ │ │ │ ├─ 0.002 pint/util.py:331 +│ │ │ │ │ ├─ 0.001 pint/util.py:340 +│ │ │ │ │ └─ 0.001 pint/util.py:329 +│ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py +│ │ │ │ ├─ 0.001 pint/facets/plain/registry.py:618 +│ │ │ │ │ └─ 0.001 UnitsContainer.keys _collections_abc.py:836 +│ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:820 +│ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:574 +│ │ │ ├─ 0.002 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:1 +│ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ ├─ 0.001 ../device_planner/frbc/frbc_timestep.py:1 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_state.py:1 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ └─ 0.001 open_code +│ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_operation_mode_wrapper.py:1 +│ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ └─ 0.001 FileFinder._get_spec :1531 +│ │ │ └─ 0.001 ../common/proposal.py:1 +│ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ └─ 0.001 ../device_planner/device_planner_abstract.py:1 +│ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ └─ 0.001 ../common/device_planner/device_plan.py:1 +│ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ └─ 0.001 loads +│ │ ├─ 0.034 pytest/__init__.py:1 +│ │ │ └─ 0.034 _find_and_load :1022 +│ │ │ └─ 0.034 _find_and_load_unlocked :987 +│ │ │ └─ 0.034 _load_unlocked :664 +│ │ │ └─ 0.034 SourceFileLoader.exec_module :877 +│ │ │ ├─ 0.031 _call_with_frames_removed :233 +│ │ │ │ ├─ 0.010 _pytest/_code/__init__.py:1 +│ │ │ │ │ └─ 0.010 _find_and_load :1022 +│ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.010 _load_unlocked :664 +│ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.010 _pytest/_code/code.py:1 +│ │ │ │ │ ├─ 0.007 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 +│ │ │ │ │ │ ├─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ ├─ 0.002 _pytest/_io/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ ├─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 _pytest/_io/terminalwriter.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 _pytest/compat.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 py.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ ├─ 0.002 pluggy/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.001 pluggy/_manager.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ +│ │ │ │ │ │ │ │ └─ 0.001 pluggy/_hooks.py:1 +│ │ │ │ │ │ │ ├─ 0.001 exceptiongroup/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 exceptiongroup/_formatting.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 register functools.py:844 +│ │ │ │ │ │ │ │ └─ 0.001 get_type_hints typing.py:1773 +│ │ │ │ │ │ │ └─ 0.001 _pytest/deprecated.py:1 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.001 _pytest/warning_types.py:1 +│ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 +│ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 +│ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ └─ 0.001 _path_isfile :159 +│ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 +│ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ ├─ 0.002 TerminalRepr.wrap dataclasses.py:1174 +│ │ │ │ │ │ └─ 0.002 TerminalRepr._process_class dataclasses.py:881 +│ │ │ │ │ │ └─ 0.002 signature inspect.py:3252 +│ │ │ │ │ │ └─ 0.002 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ └─ 0.002 _signature_from_callable inspect.py:2375 +│ │ │ │ │ │ ├─ 0.001 _signature_bound_method inspect.py:1959 +│ │ │ │ │ │ └─ 0.001 ReprEntryNative._signature_get_user_defined_method inspect.py:1867 +│ │ │ │ │ └─ 0.001 ExceptionInfo.dataclass dataclasses.py:1156 +│ │ │ │ │ └─ 0.001 ExceptionInfo.wrap dataclasses.py:1174 +│ │ │ │ │ └─ 0.001 ExceptionInfo._process_class dataclasses.py:881 +│ │ │ │ ├─ 0.009 _pytest/assertion/__init__.py:1 +│ │ │ │ │ └─ 0.009 _handle_fromlist :1053 +│ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.009 _find_and_load :1022 +│ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.009 _load_unlocked :664 +│ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.009 _pytest/assertion/rewrite.py:1 +│ │ │ │ │ ├─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ ├─ 0.005 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.005 _pytest/main.py:1 +│ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.003 _pytest/nodes.py:1 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.003 _pytest/mark/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.002 _pytest/mark/structures.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] _pytest/mark/structures.py +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ +│ │ │ │ │ │ │ │ └─ 0.001 _pytest/mark/expression.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 Token.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ └─ 0.001 Token._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.001 Dir _pytest/main.py:490 +│ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ └─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.003 _pytest/assertion/util.py:1 +│ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.002 _pytest/config/__init__.py:1 +│ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 +│ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ └─ 0.001 loads +│ │ │ │ ├─ 0.003 _pytest/cacheprovider.py:1 +│ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.002 _pytest/fixtures.py:1 +│ │ │ │ │ │ └─ 0.002 FixtureArgKey.wrap dataclasses.py:1174 +│ │ │ │ │ │ └─ 0.002 FixtureArgKey._process_class dataclasses.py:881 +│ │ │ │ │ │ └─ 0.002 FixtureArgKey._get_field dataclasses.py:722 +│ │ │ │ │ │ ├─ 0.001 [self] dataclasses.py +│ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ └─ 0.001 open_code +│ │ │ │ ├─ 0.002 _pytest/legacypath.py:1 +│ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.001 _pytest/pytester.py:1 +│ │ │ │ ├─ 0.002 _pytest/debugging.py:1 +│ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.002 unittest/__init__.py:1 +│ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.001 unittest/result.py:1 +│ │ │ │ ├─ 0.002 _pytest/doctest.py:1 +│ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.001 _pytest/python.py:1 +│ │ │ │ │ │ └─ 0.001 IdMaker.wrap dataclasses.py:1174 +│ │ │ │ │ │ └─ 0.001 IdMaker._process_class dataclasses.py:881 +│ │ │ │ │ │ └─ 0.001 IdMaker._hash_add dataclasses.py:842 +│ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 +│ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ └─ 0.001 __new__ abc.py:105 +│ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ ├─ 0.001 _pytest/__init__.py:1 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ └─ 0.001 _pytest/logging.py:1 +│ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ └─ 0.003 SourceFileLoader.get_code :950 +│ │ │ └─ 0.003 _compile_bytecode :670 +│ │ │ └─ 0.003 loads +│ │ ├─ 0.002 ../planning_service_impl.py:1 +│ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ ├─ 0.001 ../cluster_plan.py:1 +│ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ └─ 0.001 loads +│ │ │ └─ 0.001 ../root_planner.py:1 +│ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ └─ 0.001 ../congestion_point_planner.py:1 +│ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ └─ 0.001 ../common/joule_range_profile.py:1 +│ │ └─ 0.001 ../common/target_profile.py:1 +│ │ └─ 0.001 _find_and_load :1022 +│ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ └─ 0.001 _load_unlocked :664 +│ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ └─ 0.001 _call_with_frames_removed :233 +│ │ └─ 0.001 ../common/joule_profile.py:1 +│ │ └─ 0.001 _find_and_load :1022 +│ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ └─ 0.001 _load_unlocked :664 +│ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ └─ 0.001 _call_with_frames_removed :233 +│ │ └─ 0.001 ../common/abstract_profile.py:1 +│ │ └─ 0.001 _find_and_load :1022 +│ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ └─ 0.001 _find_spec :921 +│ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ └─ 0.001 _path_isfile :159 +│ │ └─ 0.001 _path_is_mode_type :150 +│ │ └─ 0.001 _path_stat :140 +│ │ └─ 0.001 stat +│ └─ 0.543 _call_with_frames_removed :233 +│ └─ 0.543 _find_and_load :1022 +│ └─ 0.543 _find_and_load_unlocked :987 +│ ├─ 0.314 _call_with_frames_removed :233 +│ │ └─ 0.314 _find_and_load :1022 +│ │ └─ 0.314 _find_and_load_unlocked :987 +│ │ ├─ 0.313 _call_with_frames_removed :233 +│ │ │ └─ 0.313 _find_and_load :1022 +│ │ │ └─ 0.313 _find_and_load_unlocked :987 +│ │ │ └─ 0.313 _load_unlocked :664 +│ │ │ └─ 0.313 SourceFileLoader.exec_module :877 +│ │ │ └─ 0.313 _call_with_frames_removed :233 +│ │ │ └─ 0.313 flexmeasures_s2/__init__.py:1 +│ │ │ ├─ 0.231 _handle_fromlist :1053 +│ │ │ │ └─ 0.231 _call_with_frames_removed :233 +│ │ │ │ └─ 0.231 _find_and_load :1022 +│ │ │ │ └─ 0.231 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.231 _load_unlocked :664 +│ │ │ │ └─ 0.231 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.231 _call_with_frames_removed :233 +│ │ │ │ └─ 0.231 flexmeasures_s2/api/somedata.py:1 +│ │ │ │ └─ 0.231 _find_and_load :1022 +│ │ │ │ └─ 0.231 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.231 _load_unlocked :664 +│ │ │ │ └─ 0.231 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.231 _call_with_frames_removed :233 +│ │ │ │ └─ 0.231 flask_security/__init__.py:1 +│ │ │ │ └─ 0.231 _find_and_load :1022 +│ │ │ │ └─ 0.231 _find_and_load_unlocked :987 +│ │ │ │ ├─ 0.230 _load_unlocked :664 +│ │ │ │ │ └─ 0.230 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.229 _call_with_frames_removed :233 +│ │ │ │ │ │ ├─ 0.112 flask_security/datastore.py:1 +│ │ │ │ │ │ │ └─ 0.112 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.112 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ ├─ 0.111 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.111 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.111 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.111 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.111 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ ├─ 0.110 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.110 sqlalchemy/__init__.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.071 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.071 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.071 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.071 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.071 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.071 sqlalchemy/engine/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.065 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.065 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.065 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.065 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.064 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 sqlalchemy/engine/events.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.062 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 sqlalchemy/engine/base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.061 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.061 sqlalchemy/engine/interfaces.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.059 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.059 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.053 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 sqlalchemy/sql/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.047 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.044 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 sqlalchemy/sql/compiler.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 sqlalchemy/sql/crud.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 sqlalchemy/sql/dml.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 sqlalchemy/sql/util.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 sqlalchemy/sql/schema.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 sqlalchemy/sql/selectable.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/sqltypes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Enum sqlalchemy/sql/sqltypes.py:1195 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/selectable.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 HasCTE sqlalchemy/sql/selectable.py:2454 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 HasSuffixes sqlalchemy/sql/selectable.py:417 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Select sqlalchemy/sql/selectable.py:5167 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SelectBase sqlalchemy/sql/selectable.py:3437 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/schema.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:222 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 sqlalchemy/sql/ddl.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 sqlalchemy/sql/elements.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] sqlalchemy/sql/elements.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ColumnElement sqlalchemy/sql/elements.py:1209 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FunctionFilter sqlalchemy/sql/elements.py:4402 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inspect_getfullargspec sqlalchemy/util/compat.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/type_api.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Protocol.__class_getitem__ typing.py:1323 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _new_module :48 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/annotation.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UpdateBase sqlalchemy/sql/dml.py:387 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 format_argspec_plus sqlalchemy/util/langhelpers.py:544 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inspect_formatargspec sqlalchemy/util/compat.py:200 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/sql/functions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/functions.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ScalarFunctionColumn.__init_subclass__ typing.py:1350 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/coercions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SQLCompiler sqlalchemy/sql/compiler.py:1033 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeCompiler.__init_subclass__ sqlalchemy/util/langhelpers.py:2010 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 fix_flags sre_parse.py:928 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 sqlalchemy/sql/base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sqlalchemy/sql/traversals.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/operators.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 comparison_op sqlalchemy/sql/operators.py:1965 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/cache_key.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1234 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__eq__ typing.py:1242 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/visitors.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.items +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ abc.py:105 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 sqlalchemy/sql/_typing.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _UnionGenericAlias.__getitem__ typing.py:1046 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1074 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/roles.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/expression.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 __go sqlalchemy/sql/__init__.py:111 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _prepare_annotations sqlalchemy/sql/annotation.py:580 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 NamedColumn._new_annotation_type sqlalchemy/sql/annotation.py:533 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] sqlalchemy/sql/annotation.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/naming.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/events.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDLEvents.__init_subclass__ sqlalchemy/event/base.py:240 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDLEvents._create_dispatcher_class sqlalchemy/event/base.py:278 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ClsLevelDispatch.__init__ sqlalchemy/event/attr.py:135 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WeakKeyDictionary.__init__ weakref.py:368 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] sqlalchemy/sql/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 sqlalchemy/pool/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 sqlalchemy/pool/events.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/pool/base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.__getitem__ typing.py:407 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.Literal typing.py:532 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _value_and_type_iter typing.py:1272 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolEvents.__init_subclass__ sqlalchemy/event/base.py:240 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolEvents._create_dispatcher_class sqlalchemy/event/base.py:278 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ClsLevelDispatch.__init__ sqlalchemy/event/attr.py:135 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _augment_fn_docs sqlalchemy/event/legacy.py:220 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inject_docstring_text sqlalchemy/util/langhelpers.py:2125 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dedent textwrap.py:422 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/pool/impl.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/api.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/attr.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/legacy.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CompoundListener.__class_getitem__ typing.py:1323 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConnectionEvents.__init_subclass__ sqlalchemy/event/base.py:240 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConnectionEvents._create_dispatcher_class sqlalchemy/event/base.py:278 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/base.py:293 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_event_name sqlalchemy/event/base.py:50 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Events.__class_getitem__ typing.py:1323 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/engine/cursor.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/engine/result.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/row.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Row sqlalchemy/engine/row.py:50 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CursorResult sqlalchemy/engine/cursor.py:1381 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/engine/create.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 decorate sqlalchemy/util/deprecations.py:224 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/url.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/reflection.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ReflectionInfo.dataclass dataclasses.py:1156 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ReflectionInfo.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ReflectionInfo._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ ├─ 0.037 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 sqlalchemy/util/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ ├─ 0.031 sqlalchemy/util/concurrency.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.030 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 asyncio/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 asyncio/base_events.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 concurrent/futures/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 concurrent/futures/_base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__exit__ :897 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 release_lock +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 asyncio/staggered.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/locks.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 asyncio/events.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/coroutines.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/base_futures.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/util/_concurrency_py3k.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/util/langhelpers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_literal_prefix sre_compile.py:485 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 greenlet/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 sqlalchemy/util/_collections.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/util/_has_cy.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _import_cy_extensions sqlalchemy/util/_has_cy.py:13 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/exc.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/util/typing.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DescriptorProto.__init__ typing_extensions.py:595 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DescriptorProto._get_protocol_attrs typing_extensions.py:518 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ abc.py:105 +│ │ │ │ │ │ │ │ │ └─ 0.001 __go sqlalchemy/__init__.py:275 +│ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ ├─ 0.071 flask_security/core.py:1 +│ │ │ │ │ │ │ └─ 0.071 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.071 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.071 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.071 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ ├─ 0.070 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.058 flask_security/totp.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.058 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.058 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.058 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.058 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ ├─ 0.057 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ ├─ 0.050 passlib/pwd.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 pkg_resources/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _call_aside pkg_resources/__init__.py:3655 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _initialize_master_working_set pkg_resources/__init__.py:3672 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 WorkingSet._build_master pkg_resources/__init__.py:647 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.__init__ pkg_resources/__init__.py:633 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.add_entry pkg_resources/__init__.py:689 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 find_on_path pkg_resources/__init__.py:2326 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 distributions_from_metadata pkg_resources/__init__.py:2397 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 safe_version pkg_resources/__init__.py:1568 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Version.__str__ packaging/version.py:234 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] packaging/version.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/version.py:247 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] pkg_resources/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 splitext posixpath.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _splitext genericpath.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dist_factory pkg_resources/__init__.py:2346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isdir genericpath.py:39 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 safe_listdir pkg_resources/__init__.py:2381 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pkg_resources/__init__.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.endswith +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WorkingSet.add pkg_resources/__init__.py:773 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 canonicalize_name packaging/utils.py:46 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 WorkingSet.add_entry pkg_resources/__init__.py:689 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 find_on_path pkg_resources/__init__.py:2326 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 distributions_from_metadata pkg_resources/__init__.py:2397 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 safe_version pkg_resources/__init__.py:1568 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Version.__init__ packaging/version.py:188 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] packaging/version.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_local_version packaging/version.py:511 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_letter_version packaging/version.py:471 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 splitext posixpath.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _splitext genericpath.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 dist_factory pkg_resources/__init__.py:2346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 fspath +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.endswith +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pkg_resources/__init__.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pkg_resources/__init__.py:3697 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 DistInfoDistribution.activate pkg_resources/__init__.py:3145 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DistInfoDistribution._get_metadata pkg_resources/__init__.py:3137 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathMetadata.has_metadata pkg_resources/__init__.py:1690 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathMetadata._has pkg_resources/__init__.py:1902 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 exists genericpath.py:16 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WorkingSet.__iter__ pkg_resources/__init__.py:756 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 packaging/markers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 packaging/_parser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 packaging/_tokenizer.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 packaging/specifiers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 packaging/utils.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 packaging/version.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Version packaging/version.py:161 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/tags.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/_manylinux.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Specifier packaging/specifiers.py:99 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Tokenizer.__next sre_parse.py:234 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__len__ sre_parse.py:161 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 jaraco/text/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 jaraco/context.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 backports/tarfile/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 backports/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 extend_path pkgutil.py:505 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 importlib/resources.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 singledispatch functools.py:800 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jaraco/functools/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 more_itertools/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 more_itertools/more.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 queue.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 exec_dynamic +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 platformdirs/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 plistlib.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_ident +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Tokenizer.match sre_parse.py:250 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/totp.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cryptography/hazmat/primitives/ciphers/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cryptography/hazmat/primitives/ciphers/base.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/modes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/algorithms.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrozenImporter.find_spec :826 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_frozen +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 passlib/crypto/digest.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getcwd +│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ ├─ 0.009 passlib/context.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/registry.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/ifc.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 passlib/utils/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _add_method crypt.py:88 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt crypt.py:70 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__exit__ :173 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _LazyOverlayModule.__getattr__ passlib/utils/compat/__init__.py:437 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _import_object passlib/utils/compat/__init__.py:406 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 configparser.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RawConfigParser configparser.py:561 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] passlib/context.py +│ │ │ │ │ │ │ │ ├─ 0.001 flask_security/oauth_glue.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 flask_security/oauth_provider.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.001 flask_security/unified_signin.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ └─ 0.001 flask_security/views.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__exit__ :897 +│ │ │ │ │ │ │ │ └─ 0.001 release_lock +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ ├─ 0.024 flask_security/changeable.py:1 +│ │ │ │ │ │ │ └─ 0.024 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.024 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.024 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.024 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ ├─ 0.023 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.022 flask_security/utils.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.022 flask_wtf/__init__.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ ├─ 0.021 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ ├─ 0.017 flask_wtf/form.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 flask_wtf/i18n.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 babel/support.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 babel/dates.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 babel/localtime/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 get_localzone babel/localtime/__init__.py:32 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _get_localzone babel/localtime/_unix.py:24 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _get_tzinfo babel/localtime/_helpers.py:12 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 timezone pytz/__init__.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 LazySet._lazy pytz/lazy.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 LazyList._lazy pytz/lazy.py:97 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 pytz/__init__.py:1114 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 resource_exists pytz/__init__.py:111 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 open_resource pytz/__init__.py:78 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 dirname posixpath.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 exists genericpath.py:16 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 open +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pytz/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Environ.get _collections_abc.py:821 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pytz/__init__.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/localtime/_unix.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/localtime/_helpers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 zoneinfo/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 zoneinfo/_tzpath.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 reset_tzpath zoneinfo/_tzpath.py:5 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_var sysconfig.py:659 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_vars sysconfig.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_posix sysconfig.py:473 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.update +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rstrip +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pytz/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/core.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/plural.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ └─ 0.004 flask_wtf/csrf.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 wtforms/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/fields/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/validators.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HostnameValidation wtforms/validators.py:640 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 +│ │ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ │ └─ 0.001 flask_login/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 flask_login/login_manager.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ └─ 0.022 flask_security/change_email.py:1 +│ │ │ │ │ │ └─ 0.022 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.022 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.022 flask_security/forms.py:1 +│ │ │ │ │ │ ├─ 0.021 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 +│ │ │ │ │ │ │ ├─ 0.020 flask_security/mail_util.py:1 +│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.020 email_validator/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ ├─ 0.019 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.019 email_validator/validate_email.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.019 email_validator/syntax.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.018 email_validator/rfc_constants.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ └─ 0.018 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ ├─ 0.010 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ │ └─ 0.007 _compile_info sre_compile.py:560 +│ │ │ │ │ │ │ │ │ │ └─ 0.007 _optimize_charset sre_compile.py:292 +│ │ │ │ │ │ │ │ │ └─ 0.001 idna/__init__.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 idna/core.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 +│ │ │ │ │ │ │ │ └─ 0.001 listdir +│ │ │ │ │ │ │ └─ 0.001 flask_security/babel.py:1 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.001 importlib_resources/__init__.py:1 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.001 importlib_resources/_common.py:1 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ └─ 0.001 ForgotPasswordForm.__init__ wtforms/form.py:177 +│ │ │ │ │ │ └─ 0.001 ForgotPasswordForm.__setattr__ wtforms/form.py:211 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ └─ 0.001 open_code +│ │ │ │ └─ 0.001 [self] +│ │ │ ├─ 0.075 _find_and_load :1022 +│ │ │ │ └─ 0.075 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.075 _load_unlocked :664 +│ │ │ │ └─ 0.075 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.075 _call_with_frames_removed :233 +│ │ │ │ ├─ 0.073 flask/__init__.py:1 +│ │ │ │ │ ├─ 0.037 _handle_fromlist :1053 +│ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.037 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.037 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.037 flask/json/__init__.py:1 +│ │ │ │ │ │ └─ 0.037 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.037 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 +│ │ │ │ │ │ ├─ 0.036 flask/globals.py:1 +│ │ │ │ │ │ │ └─ 0.036 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.036 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.036 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.036 werkzeug/__init__.py:1 +│ │ │ │ │ │ │ └─ 0.036 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.036 _load_unlocked :664 +│ │ │ │ │ │ │ ├─ 0.035 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ ├─ 0.034 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.028 werkzeug/serving.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ ├─ 0.027 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 http/server.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 http/client.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ssl.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Purpose.__new__ ssl.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 txt2obj +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] enum.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntFlag._convert_ enum.py:536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:553 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ssl.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 email/parser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/feedparser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _class_escape sre_parse.py:296 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.__init__ sre_parse.py:76 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 email/utils.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 email/charset.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/quoprimime.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/_parseaddr.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 calendar.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 html/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 werkzeug/urls.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 werkzeug/datastructures/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 werkzeug/datastructures/accept.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 werkzeug/datastructures/structures.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 werkzeug/http.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 urllib/request.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AbstractBasicAuthHandler urllib/request.py:939 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] werkzeug/http.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/sansio/http.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.__init__ :357 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/datastructures/csp.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _make_unquote_part werkzeug/urls.py:29 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 State.closegroup sre_parse.py:97 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 werkzeug/_internal.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 logging/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 StrFormatStyle logging/__init__.py:445 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 socket.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 IntEnum._convert_ enum.py:536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntEnum.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntEnum._create_ enum.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/exceptions.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 http/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ └─ 0.006 werkzeug/test.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 werkzeug/sansio/multipart.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Epilogue.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Epilogue._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Epilogue._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/utils.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/security.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/wrappers/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.001 Cookie.dataclass dataclasses.py:1156 +│ │ │ │ │ │ │ │ │ └─ 0.001 Cookie.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ └─ 0.001 Cookie._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:572 +│ │ │ │ │ │ │ │ │ └─ 0.001 _init_param dataclasses.py:508 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ └─ 0.001 flask/json/provider.py:1 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.001 decimal.py:1 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__init__ :165 +│ │ │ │ │ └─ 0.036 _find_and_load :1022 +│ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.036 _load_unlocked :664 +│ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.036 flask/app.py:1 +│ │ │ │ │ ├─ 0.030 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.030 _find_and_load_unlocked :987 +│ │ │ │ │ │ ├─ 0.029 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.029 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.029 _call_with_frames_removed :233 +│ │ │ │ │ │ │ ├─ 0.017 flask/sansio/app.py:1 +│ │ │ │ │ │ │ │ ├─ 0.016 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ ├─ 0.015 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 flask/templating.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 jinja2/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ ├─ 0.014 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 jinja2/environment.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 jinja2/lexer.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/_identifier.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_charset sre_compile.py:265 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 jinja2/compiler.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CodeGenerator jinja2/compiler.py:300 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 optimizeconst jinja2/compiler.py:45 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/defaults.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/filters.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/runtime.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 jinja2/nodes.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/utils.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ jinja2/nodes.py:59 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Environment jinja2/environment.py:144 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/bccache.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pickle.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 +│ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 +│ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ │ │ │ └─ 0.001 App flask/sansio/app.py:59 +│ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__call__ typing.py:953 +│ │ │ │ │ │ │ ├─ 0.006 click/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.005 click/core.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 click/formatting.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ │ │ │ │ │ └─ 0.001 click/termui.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 click/types.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 click/_compat.py:1 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 click/exceptions.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 click/utils.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 LazyFile click/utils.py:106 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ └─ 0.001 MultiCommand click/core.py:1481 +│ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ └─ 0.001 click/decorators.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 +│ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 +│ │ │ │ │ │ │ ├─ 0.004 werkzeug/routing/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ └─ 0.002 loads +│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/map.py:1 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/matcher.py:1 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/rules.py:1 +│ │ │ │ │ │ │ │ ├─ 0.001 RulePart.dataclass dataclasses.py:1156 +│ │ │ │ │ │ │ │ │ └─ 0.001 RulePart.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ └─ 0.001 RulePart._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 +│ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ ├─ 0.001 flask/wrappers.py:1 +│ │ │ │ │ │ │ └─ 0.001 flask/sessions.py:1 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.001 itsdangerous/__init__.py:1 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.001 itsdangerous/serializer.py:1 +│ │ │ │ │ │ │ └─ 0.001 __new__ abc.py:105 +│ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ └─ 0.006 _handle_fromlist :1053 +│ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ ├─ 0.004 flask/cli.py:1 +│ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.002 importlib/metadata/__init__.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib/metadata/_collections.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 +│ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ └─ 0.001 hasattr +│ │ │ │ │ │ │ │ └─ 0.001 flask/helpers.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 flask/signals.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 blinker/__init__.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 +│ │ │ │ │ │ │ │ └─ 0.001 _unpack_uint32 :84 +│ │ │ │ │ │ │ │ └─ 0.001 int.from_bytes +│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ └─ 0.001 flask/typing.py:1 +│ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 +│ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 +│ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 +│ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ └─ 0.001 _collect_type_vars typing.py:206 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 cache_from_source :380 +│ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ └─ 0.001 :128 +│ │ │ │ │ └─ 0.001 str.rstrip +│ │ │ │ └─ 0.002 importlib_metadata/__init__.py:1 +│ │ │ │ ├─ 0.001 EntryPoint importlib_metadata/__init__.py:136 +│ │ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ └─ 0.007 version importlib_metadata/__init__.py:1020 +│ │ │ ├─ 0.006 distribution importlib_metadata/__init__.py:994 +│ │ │ │ └─ 0.006 Distribution.from_name importlib_metadata/__init__.py:411 +│ │ │ │ └─ 0.006 bucket._get_values importlib_metadata/_itertools.py:133 +│ │ │ │ ├─ 0.004 importlib_metadata/__init__.py:930 +│ │ │ │ │ └─ 0.004 FastPath.search importlib_metadata/__init__.py:789 +│ │ │ │ │ └─ 0.004 FastPath.wrapper importlib_metadata/_functools.py:75 +│ │ │ │ │ └─ 0.004 FastPath.lookup importlib_metadata/__init__.py:798 +│ │ │ │ │ └─ 0.004 Lookup.__init__ importlib_metadata/__init__.py:808 +│ │ │ │ │ ├─ 0.002 FastPath.children importlib_metadata/__init__.py:772 +│ │ │ │ │ │ ├─ 0.001 listdir +│ │ │ │ │ │ └─ 0.001 FastPath.zip_children importlib_metadata/__init__.py:779 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 +│ │ │ │ │ │ └─ 0.001 _get_module_lock :179 +│ │ │ │ │ │ └─ 0.001 _ModuleLock.__init__ :71 +│ │ │ │ │ └─ 0.002 FastPath.joinpath importlib_metadata/__init__.py:769 +│ │ │ │ │ └─ 0.002 PosixPath.__new__ pathlib.py:957 +│ │ │ │ │ └─ 0.002 PosixPath._from_parts pathlib.py:589 +│ │ │ │ │ └─ 0.002 PosixPath._parse_args pathlib.py:569 +│ │ │ │ │ └─ 0.002 _PosixFlavour.parse_parts pathlib.py:56 +│ │ │ │ │ ├─ 0.001 str.split +│ │ │ │ │ └─ 0.001 [self] pathlib.py +│ │ │ │ └─ 0.002 importlib_metadata/__init__.py:456 +│ │ │ │ └─ 0.002 PathDistribution.metadata importlib_metadata/__init__.py:476 +│ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ └─ 0.002 importlib_metadata/_adapters.py:1 +│ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ └─ 0.002 email/policy.py:1 +│ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ └─ 0.002 email/headerregistry.py:1 +│ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ └─ 0.001 email/_header_value_parser.py:1 +│ │ │ │ └─ 0.001 compile re.py:249 +│ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 +│ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 +│ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 +│ │ │ │ └─ 0.001 min +│ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 +│ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 +│ │ │ └─ 0.001 PathDistribution.read_text importlib_metadata/__init__.py:947 +│ │ │ └─ 0.001 PosixPath.read_text pathlib.py:1129 +│ │ │ └─ 0.001 PosixPath.open pathlib.py:1111 +│ │ └─ 0.001 _load_unlocked :664 +│ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ └─ 0.001 _call_with_frames_removed :233 +│ │ └─ 0.001 s2python/__init__.py:1 +│ │ └─ 0.001 version importlib/metadata/__init__.py:989 +│ │ └─ 0.001 distribution importlib/metadata/__init__.py:963 +│ │ └─ 0.001 Distribution.from_name importlib/metadata/__init__.py:532 +│ │ └─ 0.001 importlib_metadata/__init__.py:930 +│ │ └─ 0.001 FastPath.search importlib_metadata/__init__.py:789 +│ │ └─ 0.001 FastPath.lookup importlib_metadata/__init__.py:798 +│ │ └─ 0.001 Lookup.__init__ importlib_metadata/__init__.py:808 +│ │ └─ 0.001 FastPath.children importlib_metadata/__init__.py:772 +│ │ └─ 0.001 listdir +│ └─ 0.228 _load_unlocked :664 +│ └─ 0.228 SourceFileLoader.exec_module :877 +│ └─ 0.228 _call_with_frames_removed :233 +│ └─ 0.228 s2python/frbc/__init__.py:1 +│ └─ 0.228 _find_and_load :1022 +│ ├─ 0.227 _find_and_load_unlocked :987 +│ │ └─ 0.227 _load_unlocked :664 +│ │ └─ 0.227 SourceFileLoader.exec_module :877 +│ │ ├─ 0.226 _call_with_frames_removed :233 +│ │ │ ├─ 0.201 s2python/frbc/frbc_fill_level_target_profile_element.py:1 +│ │ │ │ ├─ 0.182 _find_and_load :1022 +│ │ │ │ │ └─ 0.182 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.182 _load_unlocked :664 +│ │ │ │ │ └─ 0.182 SourceFileLoader.exec_module :877 +│ │ │ │ │ ├─ 0.181 _call_with_frames_removed :233 +│ │ │ │ │ │ ├─ 0.180 s2python/common/__init__.py:1 +│ │ │ │ │ │ │ └─ 0.180 _find_and_load :1022 +│ │ │ │ │ │ │ ├─ 0.178 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ ├─ 0.177 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.177 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.177 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.132 s2python/generated/gen_s2.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.077 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.056 ResourceManagerDetails.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.034 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.034 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.034 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.033 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.029 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.029 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 float.lenient_issubclass pydantic/_internal/_utils.py:97 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseModel.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_subclasscheck +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_namedtuple pydantic/_internal/_typing_extra.py:357 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/_internal/_generate_schema.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._literal_schema pydantic/_internal/_generate_schema.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 literal_values pydantic/_internal/_typing_extra.py:90 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_typing_extra.py:96 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 literal_values pydantic/_internal/_typing_extra.py:90 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_literal pydantic/_internal/_typing_extra.py:77 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 RoleType.lenient_issubclass pydantic/_internal/_utils.py:97 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 BaseModel.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RootModel.__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _abc_subclasscheck +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].__subclasscheck__ abc.py:121 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_subclasscheck +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pydantic/_internal/_generate_schema.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_type_alias_type pydantic/_internal/_typing_extra.py:209 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__getattr__ typing.py:976 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.endswith +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 new_handler pydantic/_internal/_generate_schema.py:2130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 pydantic/_internal/_generate_schema.py:2127 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 new_handler pydantic/_internal/_generate_schema.py:2130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pydantic/_internal/_generate_schema.py:2127 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._list_schema pydantic/_internal/_generate_schema.py:366 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_annotated pydantic/_internal/_typing_extra.py:99 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_schema_generation_shared.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 GroupedMetadata.__instancecheck__ typing.py:1490 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GroupedMetadata._is_callable_members_only typing.py:1425 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 set.add +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__init__ pydantic/_internal/_schema_generation_shared.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_generate_schema.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _extract_json_schema_info_from_field_info pydantic/_internal/_generate_schema.py:259 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_generate_schema.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 apply_model_validators pydantic/_internal/_generate_schema.py:2308 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NsResolver.push pydantic/_internal/_namespace_utils.py:274 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 resolve_original_schema pydantic/_internal/_generate_schema.py:2478 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 simplify_schema_references pydantic/_internal/_core_utils.py:442 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._copy_schema pydantic/_internal/_core_utils.py:180 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_core_utils.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 get_ref pydantic/_internal/_core_utils.py:107 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 apply_discriminators pydantic/_internal/_discriminated_union.py:37 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 collect_definitions pydantic/_internal/_core_utils.py:114 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_core_utils.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dict.pop +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 validate_core_schema pydantic/_internal/_core_utils.py:607 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_core_schema +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.collect_definitions pydantic/_internal/_generate_schema.py:553 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 create_schema_validator pydantic/plugin/_schema_validator.py:21 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 PPBCPowerProfileDefinition.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 PPBCPowerProfileDefinition.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 get_model_type_hints pydantic/_internal/_typing_extra.py:472 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 try_eval_type pydantic/_internal/_typing_extra.py:538 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _type_convert pydantic/_internal/_typing_extra.py:454 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ForwardRef.__init__ typing.py:664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 compile +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 eval_type_backport pydantic/_internal/_typing_extra.py:593 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _eval_type_backport pydantic/_internal/_typing_extra.py:626 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _eval_type pydantic/_internal/_typing_extra.py:656 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _eval_type typing.py:320 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRef._evaluate typing.py:679 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 from_annotated_attribute pydantic/fields.py:342 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 merge_field_infos pydantic/fields.py:427 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FieldInfo.__newobj__ copyreg.py:100 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 object.__new__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_finalvar pydantic/_internal/_typing_extra.py:273 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 is_classvar_annotation pydantic/_internal/_typing_extra.py:244 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_typing_extra.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_classvar pydantic/_internal/_typing_extra.py:224 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _warn_on_nested_alias_in_annotation pydantic/_internal/_fields.py:253 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_fields.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_annotated pydantic/_internal/_typing_extra.py:99 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pydantic/_internal/_fields.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__instancecheck__ typing.py:993 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__subclasscheck__ typing.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDBCOperationMode.get_model_typevars_map pydantic/_internal/_generics.py:237 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 build pydantic/_internal/_decorators.py:426 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_decorators.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _collect_bases_data pydantic/_internal/_model_construction.py:277 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConfigWrapper.for_model pydantic/_internal/_config.py:99 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__init__ pydantic/_internal/_config.py:93 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_config pydantic/_internal/_config.py:282 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_deprecated pydantic/_internal/_config.py:332 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDBCInstruction.set_deprecated_descriptors pydantic/_internal/_model_construction.py:648 +│ │ │ │ │ │ │ │ │ │ ├─ 0.043 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 __getattr__ pydantic/__init__.py:402 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 import_module importlib/__init__.py:108 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _gcd_import :1038 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.042 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 pydantic/root_model.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 RootModel.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 validate_core_schema pydantic/_internal/_core_utils.py:607 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 [self] pydantic/_internal/_core_utils.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 validate_core_schema +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 create_schema_validator pydantic/plugin/_schema_validator.py:21 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 get_plugins pydantic/plugin/_loader.py:21 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PathDistribution.entry_points importlib_metadata/__init__.py:516 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 PathDistribution.read_text importlib_metadata/__init__.py:947 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 PosixPath.read_text pathlib.py:1129 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PosixPath.open pathlib.py:1111 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pathlib.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.joinpath pathlib.py:845 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath._make_child pathlib.py:615 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _PosixFlavour.join_parsed_parts pathlib.py:94 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EntryPoints._from_text_for importlib_metadata/__init__.py:321 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _from_text importlib_metadata/__init__.py:325 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 RootModel.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_literal pydantic/_internal/_typing_extra.py:77 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_std_types_schema.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InnerSchemaValidator.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InnerSchemaValidator._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 pydantic/types.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 annotated_types/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Lt.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Lt._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Len._get_field dataclasses.py:722 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field.__init__ dataclasses.py:286 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Lt._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Unit._hash_add dataclasses.py:842 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/json_schema.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _DefinitionsRemapping.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DefinitionsRemapping._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__str__ inspect.py:3206 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_mock_val_ser.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/plugin/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ValidateStringsHandlerProtocol.__init__ typing_extensions.py:595 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ValidateStringsHandlerProtocol._get_protocol_attrs typing_extensions.py:518 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/_internal/_fields.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_config.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/aliases.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasChoices.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasChoices._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/config.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_validators.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Annotated.__class_getitem__ typing.py:1695 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _AnnotatedAlias.__init__ typing.py:1621 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _AnnotatedAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 AllowInfNan.dataclass dataclasses.py:1156 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AllowInfNan.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AllowInfNan._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GetPydanticSchema.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GetPydanticSchema._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EncoderProtocol.__init__ typing_extensions.py:595 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EncoderProtocol._get_protocol_attrs typing_extensions.py:518 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/main.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_model_construction.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/fields.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:424 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ControlType.__setattr__ enum.py:470 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 RootModel.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_schema_validator pydantic/plugin/_schema_validator.py:21 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PPBCScheduleInstruction s2python/generated/gen_s2.py:623 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_metadata pydantic/fields.py:536 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PPBCPowerSequence s2python/generated/gen_s2.py:1403 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecastValue s2python/generated/gen_s2.py:976 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 FRBCUsageForecastElement s2python/generated/gen_s2.py:300 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 conint pydantic/types.py:148 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Annotated.__class_getitem__ typing.py:1695 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1621 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 DDBCSystemDescription s2python/generated/gen_s2.py:1493 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PEBCPowerConstraints s2python/generated/gen_s2.py:1301 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 FRBCFillLevelTargetProfile s2python/generated/gen_s2.py:874 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 OMBCOperationMode s2python/generated/gen_s2.py:1128 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 +│ │ │ │ │ │ │ │ │ ├─ 0.018 s2python/common/duration.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.017 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 s2python/validate_values_mixin.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 pydantic/v1/__init__.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 pydantic/v1/dataclasses.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 pydantic/v1/error_wrappers.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 pydantic/v1/json.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/v1/networks.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/validators.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/datetime_parse.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 RegexFlag.__and__ enum.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/v1/types.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/color.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/v1/class_validators.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/v1/utils.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/errors.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/typing.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/v1/main.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/v1/main.py:122 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 generate_model_signature pydantic/v1/utils.py:236 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/config.py:1 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigDict pydantic/v1/config.py:46 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.__getitem__ typing.py:407 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.Literal typing.py:532 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 lock.__exit__ +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_class types.py:100 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Duration.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Duration.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.keys +│ │ │ │ │ │ │ │ │ ├─ 0.004 s2python/common/resource_manager_details.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ResourceManagerDetails.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_model_construction.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 define_expected_missing_refs pydantic/_internal/_core_utils.py:128 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_core_utils.py:140 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 invalid_schema pydantic_core/core_schema.py:447 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _dict_not_none pydantic_core/core_schema.py:4108 +│ │ │ │ │ │ │ │ │ ├─ 0.003 s2python/common/power_forecast_value.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 PowerForecastValue.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 create_schema_validator pydantic/plugin/_schema_validator.py:21 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/revoke_object.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RevokeObject.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_core_schema pydantic/_internal/_core_utils.py:607 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_core_schema +│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 set_cached_generic_type pydantic/_internal/_generics.py:474 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent._early_cache_key pydantic/_internal/_generics.py:515 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _union_orderings_key pydantic/_internal/_generics.py:491 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _union_orderings_key pydantic/_internal/_generics.py:491 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 is_union pydantic/_internal/_typing_extra.py:64 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/number_range.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRange.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 generic_recursion_self_type pydantic/_internal/_generics.py:404 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ContextVar.get +│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/transition.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 Transition.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_args typing.py:1929 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 +│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast.py:1 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[PowerForecast].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_schema_validator pydantic/plugin/_schema_validator.py:21 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_plugins pydantic/plugin/_loader.py:21 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getenv os.py:772 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Environ.get _collections_abc.py:821 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecast.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/timer.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 update_core_metadata pydantic/_internal/_core_metadata.py:41 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/instruction_status_update.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/handshake.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type_backport pydantic/_internal/_typing_extra.py:626 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type pydantic/_internal/_typing_extra.py:656 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef._evaluate typing.py:679 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:329 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/handshake_response.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 HandshakeResponse.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 HandshakeResponse.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_value.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/session_request.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_measurement.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_range.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/reception_status.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 setattr +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_forecast_element.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 +│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/role.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Role.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Role.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 is_self pydantic/_internal/_typing_extra.py:131 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_typing_name pydantic/_internal/_typing_extra.py:44 +│ │ │ │ │ │ │ │ │ └─ 0.001 s2python/common/select_control_type.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 +│ │ │ │ │ │ │ └─ 0.002 _ModuleLockManager.__enter__ :169 +│ │ │ │ │ │ │ └─ 0.002 _ModuleLock.acquire :100 +│ │ │ │ │ │ └─ 0.001 pydantic/__init__.py:1 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ │ └─ 0.001 _path_isfile :159 +│ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 +│ │ │ │ │ │ └─ 0.001 _path_stat :140 +│ │ │ │ │ │ └─ 0.001 stat +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ │ │ │ └─ 0.001 BufferedReader.read +│ │ │ │ ├─ 0.018 _handle_fromlist :1053 +│ │ │ │ │ └─ 0.018 __getattr__ pydantic/__init__.py:402 +│ │ │ │ │ └─ 0.018 import_module importlib/__init__.py:108 +│ │ │ │ │ └─ 0.018 _gcd_import :1038 +│ │ │ │ │ └─ 0.018 _find_and_load :1022 +│ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.018 _load_unlocked :664 +│ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.018 pydantic/functional_validators.py:1 +│ │ │ │ │ ├─ 0.010 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.010 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.010 pydantic_core/__init__.py:1 +│ │ │ │ │ │ └─ 0.010 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.010 _load_unlocked :664 +│ │ │ │ │ │ ├─ 0.008 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.008 pydantic_core/core_schema.py:1 +│ │ │ │ │ │ │ ├─ 0.006 _TypedDictMeta.__new__ typing_extensions.py:916 +│ │ │ │ │ │ │ │ ├─ 0.002 type.__new__ +│ │ │ │ │ │ │ │ ├─ 0.002 _get_typeddict_qualifiers typing_extensions.py:894 +│ │ │ │ │ │ │ │ │ └─ 0.002 get_origin typing.py:1902 +│ │ │ │ │ │ │ │ │ └─ 0.002 isinstance +│ │ │ │ │ │ │ │ ├─ 0.001 [self] typing_extensions.py +│ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 +│ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 +│ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 +│ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ └─ 0.002 _LiteralSpecialForm.__getitem__ typing.py:407 +│ │ │ │ │ │ │ └─ 0.002 inner typing.py:306 +│ │ │ │ │ │ │ └─ 0.002 _LiteralSpecialForm.Literal typing.py:532 +│ │ │ │ │ │ │ └─ 0.002 _LiteralGenericAlias.__init__ typing.py:1016 +│ │ │ │ │ │ │ └─ 0.002 _collect_type_vars typing_extensions.py:2989 +│ │ │ │ │ │ │ ├─ 0.001 _is_unpacked_typevartuple typing_extensions.py:2976 +│ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 +│ │ │ │ │ │ │ └─ 0.001 _should_collect_from_parameters typing_extensions.py:154 +│ │ │ │ │ │ └─ 0.002 module_from_spec :564 +│ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.002 create_dynamic +│ │ │ │ │ ├─ 0.006 _handle_fromlist :1053 +│ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.005 pydantic/_internal/_decorators.py:1 +│ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/_internal/_core_utils.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_repr.py:1 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_utils.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_import_utils.py:1 +│ │ │ │ │ │ │ │ │ └─ 0.001 decorating_function functools.py:518 +│ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 +│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 +│ │ │ │ │ │ │ │ └─ 0.001 acquire_lock +│ │ │ │ │ │ │ ├─ 0.001 FieldValidatorDecoratorInfo.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ │ └─ 0.001 FieldValidatorDecoratorInfo._process_class dataclasses.py:881 +│ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 +│ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.dataclass dataclasses.py:1156 +│ │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.wrap dataclasses.py:1174 +│ │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy._process_class dataclasses.py:881 +│ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 +│ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ └─ 0.002 AfterValidator.wrap dataclasses.py:1174 +│ │ │ │ │ └─ 0.002 AfterValidator._process_class dataclasses.py:881 +│ │ │ │ │ ├─ 0.001 AfterValidator._hash_add dataclasses.py:842 +│ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 +│ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ └─ 0.001 WrapValidator._frozen_get_del_attr dataclasses.py:598 +│ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 +│ │ │ │ │ └─ 0.001 exec +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 inspect_namespace pydantic/_internal/_model_construction.py:357 +│ │ │ │ └─ 0.001 is_valid_privateattr_name pydantic/_internal/_fields.py:375 +│ │ │ │ └─ 0.001 str.startswith +│ │ │ ├─ 0.004 s2python/frbc/frbc_actuator_description.py:1 +│ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ ├─ 0.002 FRBCActuatorDescription.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 +│ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ │ └─ 0.001 FRBCActuatorDescription.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 +│ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 +│ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 +│ │ │ │ │ │ └─ 0.001 str.startswith +│ │ │ │ │ └─ 0.001 FRBCActuatorDescription.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ └─ 0.001 FRBCActuatorDescription.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ └─ 0.001 from_annotated_attribute pydantic/fields.py:342 +│ │ │ │ │ └─ 0.001 is_finalvar pydantic/_internal/_typing_extra.py:273 +│ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 +│ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 +│ │ │ ├─ 0.002 s2python/frbc/frbc_timer_status.py:1 +│ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ └─ 0.001 FRBCTimerStatus.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ └─ 0.001 validate_core_schema pydantic/_internal/_core_utils.py:607 +│ │ │ │ │ └─ 0.001 validate_core_schema +│ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 S2MessageComponent[FRBCTimerStatus].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 +│ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 +│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ ├─ 0.002 s2python/frbc/frbc_storage_status.py:1 +│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ └─ 0.001 inspect_namespace pydantic/_internal/_model_construction.py:357 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCStorageStatus.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 +│ │ │ ├─ 0.002 s2python/frbc/frbc_actuator_status.py:1 +│ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ ├─ 0.001 FRBCActuatorStatus.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ │ └─ 0.001 FRBCActuatorStatus.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 +│ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 +│ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 +│ │ │ │ │ └─ 0.001 _eval_type_backport pydantic/_internal/_typing_extra.py:626 +│ │ │ │ │ └─ 0.001 _eval_type pydantic/_internal/_typing_extra.py:656 +│ │ │ │ │ └─ 0.001 _eval_type typing.py:320 +│ │ │ │ │ └─ 0.001 ForwardRef._evaluate typing.py:679 +│ │ │ │ └─ 0.001 FRBCActuatorStatus.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ └─ 0.001 GenerateSchema.collect_definitions pydantic/_internal/_generate_schema.py:553 +│ │ │ │ └─ 0.001 definition_reference_schema pydantic_core/core_schema.py:3851 +│ │ │ ├─ 0.002 s2python/frbc/frbc_usage_forecast_element.py:1 +│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ └─ 0.001 S2MessageComponent[FRBCUsageForecastElement].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 +│ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 +│ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 +│ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCUsageForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 FRBCUsageForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode_element.py:1 +│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ └─ 0.001 S2MessageComponent[FRBCOperationModeElement].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ └─ 0.001 S2MessageComponent[FRBCOperationModeElement].__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ └─ 0.001 check_decorator_fields_exist pydantic/_internal/_generate_schema.py:189 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCOperationModeElement.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 FRBCOperationModeElement.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ └─ 0.001 _extract_json_schema_info_from_field_info pydantic/_internal/_generate_schema.py:259 +│ │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode.py:1 +│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ └─ 0.001 NsResolver.__init__ pydantic/_internal/_namespace_utils.py:227 +│ │ │ │ │ └─ 0.001 :1 +│ │ │ │ │ └─ 0.001 tuple.__new__ +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCOperationMode.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 FRBCOperationMode.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 +│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 +│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ │ │ └─ 0.001 _GenericAlias.__eq__ typing.py:1031 +│ │ │ │ └─ 0.001 isinstance +│ │ │ ├─ 0.002 s2python/frbc/frbc_fill_level_target_profile.py:1 +│ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 +│ │ │ │ │ └─ 0.001 GenerateSchema._apply_single_annotation pydantic/_internal/_generate_schema.py:2062 +│ │ │ │ │ └─ 0.001 apply_known_metadata pydantic/_internal/_known_annotated_metadata.py:167 +│ │ │ │ │ └─ 0.001 collect_known_metadata pydantic/_internal/_known_annotated_metadata.py:331 +│ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 +│ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 +│ │ │ │ │ └─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 +│ │ │ │ │ └─ 0.001 all +│ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 +│ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 S2MessageComponent[FRBCFillLevelTargetProfile].complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 S2MessageComponent[FRBCFillLevelTargetProfile].__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ ├─ 0.002 s2python/frbc/frbc_system_description.py:1 +│ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.002 FRBCSystemDescription.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ ├─ 0.001 FRBCSystemDescription.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 +│ │ │ │ └─ 0.001 collect_definitions pydantic/_internal/_core_utils.py:114 +│ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 +│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ ├─ 0.001 s2python/frbc/frbc_instruction.py:1 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCInstruction.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ └─ 0.001 FRBCInstruction.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 +│ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 +│ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 +│ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 +│ │ │ │ └─ 0.001 compile +│ │ │ ├─ 0.001 s2python/frbc/frbc_leakage_behaviour.py:1 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCLeakageBehaviour.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 FRBCLeakageBehaviour.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 +│ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 +│ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 +│ │ │ ├─ 0.001 s2python/frbc/frbc_storage_description.py:1 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCStorageDescription.set_model_fields pydantic/_internal/_model_construction.py:522 +│ │ │ │ └─ 0.001 FRBCStorageDescription.collect_model_fields pydantic/_internal/_fields.py:74 +│ │ │ │ └─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 +│ │ │ ├─ 0.001 s2python/frbc/frbc_leakage_behaviour_element.py:1 +│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ │ └─ 0.001 FRBCLeakageBehaviourElement.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 +│ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 +│ │ │ │ └─ 0.001 collect_definitions pydantic/_internal/_core_utils.py:114 +│ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 +│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 +│ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 +│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 +│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 +│ │ │ └─ 0.001 s2python/frbc/frbc_usage_forecast.py:1 +│ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 +│ │ │ └─ 0.001 FRBCUsageForecast.complete_model_class pydantic/_internal/_model_construction.py:555 +│ │ │ └─ 0.001 FRBCUsageForecast.__get_pydantic_core_schema__ pydantic/main.py:680 +│ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 +│ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 +│ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 +│ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 +│ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 +│ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 +│ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 +│ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 +│ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 +│ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 +│ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ └─ 0.001 SourceFileLoader.get_data :1070 +│ │ └─ 0.001 open_code +│ └─ 0.001 cb :198 +│ └─ 0.001 acquire_lock +└─ 0.003 [self] test_frbc_device.py + +To view this report with different options, run: + pyinstrument --load-prev 2025-06-02T09-18-51 [options] + diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 88411dd..2583815 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -671,12 +671,12 @@ def test_planning_service_impl_with_ev_device(): device_plans = cluster_plan.get_plan_data().get_device_plans() energy_profile = cluster_plan.get_joule_profile() - plot_planning_results( - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, - predicted_energy_elements=energy_profile.get_elements(), - target_energy_elements=target_profile_elements, - ) + # plot_planning_results( + # timestep_duration=timedelta(seconds=300), + # nr_of_timesteps=288, + # predicted_energy_elements=energy_profile.get_elements(), + # target_energy_elements=target_profile_elements, + # ) # Get only the non-None plans device_plans = [plan for plan in device_plans if plan is not None] From 7345e282b39319b8d8523cb540e5c4487decb64b Mon Sep 17 00:00:00 2001 From: "F.N. Claessen" Date: Mon, 2 Jun 2025 13:17:13 +0200 Subject: [PATCH 30/33] Revert "Scheduling 10 EVs" This reverts commit f0e31b4e624b7bfc79c756cfab01672ea98732c1. --- .../tests/profiling_results.py | 0 .../tests/profiling_results.txt | 7243 ----------------- .../tests/test_frbc_device.py | 12 +- 3 files changed, 6 insertions(+), 7249 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results.py diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.py b/flexmeasures_s2/profile_steering/tests/profiling_results.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.txt b/flexmeasures_s2/profile_steering/tests/profiling_results.txt index b0b9c62..e69de29 100644 --- a/flexmeasures_s2/profile_steering/tests/profiling_results.txt +++ b/flexmeasures_s2/profile_steering/tests/profiling_results.txt @@ -1,7243 +0,0 @@ -Test the PlanningServiceImpl with an EV device. -Generating plan! -here -here -here -here -here -here -here -here -here -here -Current planning is within the congestion target range. Returning it. -Improving-------------------------> -CP '': Selected best controller 'battery10' with improvement of 2.683116967500083e+16. -Root controller: selected best controller 'battery10' with global energy impr 2.683116967500083e+16, congestion impr 0.0, iteration 1. -Improving-------------------------> -CP '': Selected best controller 'battery9' with improvement of 1.820404867499981e+16. -Root controller: selected best controller 'battery9' with global energy impr 1.820404867499981e+16, congestion impr 0.0, iteration 2. -Improving-------------------------> -CP '': Selected best controller 'battery8' with improvement of 1.124027887500032e+16. -Root controller: selected best controller 'battery8' with global energy impr 1.124027887500032e+16, congestion impr 0.0, iteration 3. -Improving-------------------------> -CP '': Selected best controller 'battery7' with improvement of 6788644424999936.0. -Root controller: selected best controller 'battery7' with global energy impr 6788644424999936.0, congestion impr 0.0, iteration 4. -Improving-------------------------> -CP '': Selected best controller 'battery6' with improvement of 5305740975000576.0. -Root controller: selected best controller 'battery6' with global energy impr 5305740975000576.0, congestion impr 0.0, iteration 5. -Improving-------------------------> -CP '': Selected best controller 'battery5' with improvement of 5263341524999680.0. -Root controller: selected best controller 'battery5' with global energy impr 5263341524999680.0, congestion impr 0.0, iteration 6. -Improving-------------------------> -CP '': Selected best controller 'battery4' with improvement of 5294044575000576.0. -Root controller: selected best controller 'battery4' with global energy impr 5294044575000576.0, congestion impr 0.0, iteration 7. -Improving-------------------------> -CP '': Selected best controller 'battery3' with improvement of 5247258974999552.0. -Root controller: selected best controller 'battery3' with global energy impr 5247258974999552.0, congestion impr 0.0, iteration 8. -Improving-------------------------> -CP '': Selected best controller 'battery2' with improvement of 5267727675000320.0. -Root controller: selected best controller 'battery2' with global energy impr 5267727675000320.0, congestion impr 0.0, iteration 9. -Improving-------------------------> -CP '': Selected best controller 'battery1' with improvement of 5234100524999680.0. -Root controller: selected best controller 'battery1' with global energy impr 5234100524999680.0, congestion impr 0.0, iteration 10. -Improving-------------------------> -CP '': Selected best controller 'battery10' with improvement of 0.0. -Root controller: selected best controller 'battery10' with global energy impr 0.0, congestion impr 0.0, iteration 11. -Optimizing priority class 1 was done after 11 iterations. -Plan generated in 979.74 seconds -Got cluster plan -Got device plan - - _ ._ __/__ _ _ _ _ _/_ Recorded: 09:18:51 Samples: 966023 - /_//_/// /_\ / //_// / //_'/ // Duration: 981.020 CPU time: 981.295 -/ _/ v5.0.1 - -Program: test_frbc_device.py - -981.017 test_frbc_device.py:1 -├─ 979.751 test_planning_service_impl_with_ev_device test_frbc_device.py:580 -│ ├─ 979.743 PlanningServiceImpl.plan ../planning_service_impl.py:181 -│ │ ├─ 979.586 RootPlanner.plan ../root_planner.py:54 -│ │ │ ├─ 898.823 CongestionPointPlanner.create_improved_planning ../congestion_point_planner.py:144 -│ │ │ │ ├─ 897.555 S2FrbcDevicePlanner.create_improved_planning ../device_planner/frbc/s2_frbc_device_planner.py:98 -│ │ │ │ │ ├─ 897.500 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 -│ │ │ │ │ │ ├─ 894.398 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 -│ │ │ │ │ │ │ ├─ 885.694 try_create_next_state ../device_planner/frbc/frbc_state.py:357 -│ │ │ │ │ │ │ │ ├─ 703.762 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 -│ │ │ │ │ │ │ │ │ ├─ 186.059 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ │ ├─ 87.402 UUID.__init__ uuid.py:138 -│ │ │ │ │ │ │ │ │ │ ├─ 63.648 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ ├─ 14.183 str.replace -│ │ │ │ │ │ │ │ │ │ ├─ 4.005 list.count -│ │ │ │ │ │ │ │ │ │ ├─ 2.960 str.strip -│ │ │ │ │ │ │ │ │ │ └─ 2.606 len -│ │ │ │ │ │ │ │ │ ├─ 78.156 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 -│ │ │ │ │ │ │ │ │ │ ├─ 49.615 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 -│ │ │ │ │ │ │ │ │ │ │ ├─ 24.977 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 17.870 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 3.550 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 1.966 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 1.591 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ │ │ │ ├─ 21.533 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.935 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 -│ │ │ │ │ │ │ │ │ │ │ └─ 1.169 next -│ │ │ │ │ │ │ │ │ │ ├─ 25.092 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ └─ 3.449 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 -│ │ │ │ │ │ │ │ │ ├─ 75.858 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 -│ │ │ │ │ │ │ │ │ │ ├─ 38.879 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 -│ │ │ │ │ │ │ │ │ │ │ ├─ 26.525 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 4.274 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 -│ │ │ │ │ │ │ │ │ │ │ ├─ 3.213 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 -│ │ │ │ │ │ │ │ │ │ │ ├─ 2.772 abs -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.969 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.065 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.060 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 -│ │ │ │ │ │ │ │ │ │ ├─ 21.729 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ │ │ │ ├─ 8.572 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 -│ │ │ │ │ │ │ │ │ │ ├─ 3.832 FrbcState.get_bucket ../device_planner/frbc/frbc_state.py:488 -│ │ │ │ │ │ │ │ │ │ ├─ 2.657 FrbcState.set_selection_reason ../device_planner/frbc/frbc_state.py:509 -│ │ │ │ │ │ │ │ │ │ └─ 0.188 FrbcState.get_fill_level_distance ../device_planner/frbc/frbc_state.py:469 -│ │ │ │ │ │ │ │ │ ├─ 61.248 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 -│ │ │ │ │ │ │ │ │ │ ├─ 41.115 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 -│ │ │ │ │ │ │ │ │ │ │ ├─ 22.325 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 15.619 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 3.368 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 1.755 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 1.583 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ │ │ │ ├─ 15.917 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.795 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 -│ │ │ │ │ │ │ │ │ │ │ └─ 1.078 next -│ │ │ │ │ │ │ │ │ │ ├─ 14.928 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 1.882 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 -│ │ │ │ │ │ │ │ │ │ ├─ 1.730 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ │ │ └─ 1.593 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ │ ├─ 49.919 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 -│ │ │ │ │ │ │ │ │ │ ├─ 31.700 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ └─ 18.218 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ │ ├─ 43.240 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 -│ │ │ │ │ │ │ │ │ │ ├─ 31.351 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 -│ │ │ │ │ │ │ │ │ │ │ ├─ 18.448 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 10.138 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.564 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 -│ │ │ │ │ │ │ │ │ │ │ └─ 1.201 next -│ │ │ │ │ │ │ │ │ │ ├─ 9.932 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ └─ 1.957 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 -│ │ │ │ │ │ │ │ │ ├─ 23.999 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 -│ │ │ │ │ │ │ │ │ │ ├─ 18.764 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 3.421 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ │ └─ 1.814 FrbcTimestep.get_nr_of_buckets ../device_planner/frbc/frbc_timestep.py:57 -│ │ │ │ │ │ │ │ │ ├─ 11.175 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ ├─ 8.727 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ └─ 2.448 isinstance -│ │ │ │ │ │ │ │ │ ├─ 10.469 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 -│ │ │ │ │ │ │ │ │ │ ├─ 6.290 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ │ │ │ └─ 4.179 timedelta.total_seconds -│ │ │ │ │ │ │ │ │ ├─ 9.885 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 -│ │ │ │ │ │ │ │ │ │ ├─ 8.771 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 -│ │ │ │ │ │ │ │ │ │ │ ├─ 6.743 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 6.043 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.565 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.349 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.216 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.170 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.085 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 next -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.013 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.959 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:344 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.486 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.473 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.354 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.119 isinstance -│ │ │ │ │ │ │ │ │ │ │ └─ 0.056 next -│ │ │ │ │ │ │ │ │ │ └─ 1.114 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 7.603 isinstance -│ │ │ │ │ │ │ │ │ ├─ 7.515 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 -│ │ │ │ │ │ │ │ │ │ ├─ 5.592 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 -│ │ │ │ │ │ │ │ │ │ │ ├─ 4.793 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.648 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.398 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.250 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.186 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 isinstance -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.091 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.059 next -│ │ │ │ │ │ │ │ │ │ ├─ 1.234 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.401 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.314 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.087 isinstance -│ │ │ │ │ │ │ │ │ │ └─ 0.288 isinstance -│ │ │ │ │ │ │ │ │ ├─ 5.665 UUID.__hash__ uuid.py:267 -│ │ │ │ │ │ │ │ │ │ ├─ 3.546 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ └─ 2.119 hash -│ │ │ │ │ │ │ │ │ ├─ 5.650 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 -│ │ │ │ │ │ │ │ │ ├─ 4.907 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 -│ │ │ │ │ │ │ │ │ ├─ 4.059 S2ActuatorConfiguration.get_factor ../device_planner/frbc/s2_frbc_actuator_configuration.py:15 -│ │ │ │ │ │ │ │ │ ├─ 3.637 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 -│ │ │ │ │ │ │ │ │ ├─ 3.258 dict.items -│ │ │ │ │ │ │ │ │ ├─ 2.857 dict.copy -│ │ │ │ │ │ │ │ │ ├─ 2.219 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 -│ │ │ │ │ │ │ │ │ ├─ 2.160 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 -│ │ │ │ │ │ │ │ │ ├─ 2.105 dict.keys -│ │ │ │ │ │ │ │ │ ├─ 1.936 JouleElement.get_joules ../common/target_profile.py:18 -│ │ │ │ │ │ │ │ │ ├─ 1.910 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 -│ │ │ │ │ │ │ │ │ ├─ 1.899 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ ├─ 1.865 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 -│ │ │ │ │ │ │ │ │ ├─ 1.857 FrbcTimestep.get_forecasted_usage ../device_planner/frbc/frbc_timestep.py:168 -│ │ │ │ │ │ │ │ │ ├─ 1.814 FrbcTimestep.get_target ../device_planner/frbc/frbc_timestep.py:109 -│ │ │ │ │ │ │ │ │ ├─ 1.617 FrbcTimestep.get_max_constraint ../device_planner/frbc/frbc_timestep.py:115 -│ │ │ │ │ │ │ │ │ ├─ 1.585 FrbcTimestep.get_min_constraint ../device_planner/frbc/frbc_timestep.py:112 -│ │ │ │ │ │ │ │ │ ├─ 0.115 timer_key ../device_planner/frbc/frbc_state.py:346 -│ │ │ │ │ │ │ │ │ ├─ 0.089 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ │ │ ├─ 0.026 dict.pop -│ │ │ │ │ │ │ │ │ └─ 0.003 get_initial_timer_elapse_map_for_system_description ../device_planner/frbc/frbc_state.py:208 -│ │ │ │ │ │ │ │ │ ├─ 0.002 UUID.__hash__ uuid.py:267 -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ ├─ 85.245 UUID.__init__ uuid.py:138 -│ │ │ │ │ │ │ │ │ ├─ 61.877 [self] uuid.py -│ │ │ │ │ │ │ │ │ ├─ 14.057 str.replace -│ │ │ │ │ │ │ │ │ ├─ 3.860 list.count -│ │ │ │ │ │ │ │ │ ├─ 2.851 str.strip -│ │ │ │ │ │ │ │ │ └─ 2.600 len -│ │ │ │ │ │ │ │ ├─ 63.553 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ ├─ 11.310 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ ├─ 8.898 [self] uuid.py -│ │ │ │ │ │ │ │ │ └─ 2.412 isinstance -│ │ │ │ │ │ │ │ ├─ 5.642 UUID.__hash__ uuid.py:267 -│ │ │ │ │ │ │ │ │ ├─ 3.502 [self] uuid.py -│ │ │ │ │ │ │ │ │ └─ 2.140 hash -│ │ │ │ │ │ │ │ ├─ 4.291 isinstance -│ │ │ │ │ │ │ │ ├─ 3.947 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 -│ │ │ │ │ │ │ │ ├─ 3.741 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 -│ │ │ │ │ │ │ │ │ ├─ 1.680 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 -│ │ │ │ │ │ │ │ │ │ ├─ 0.833 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.713 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.461 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.252 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.195 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.057 isinstance -│ │ │ │ │ │ │ │ │ │ ├─ 0.083 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ │ └─ 0.051 next -│ │ │ │ │ │ │ │ │ ├─ 1.344 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.406 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ ├─ 0.304 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ └─ 0.102 isinstance -│ │ │ │ │ │ │ │ │ └─ 0.311 isinstance -│ │ │ │ │ │ │ │ ├─ 2.097 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 -│ │ │ │ │ │ │ │ ├─ 1.833 dict.items -│ │ │ │ │ │ │ │ ├─ 0.110 timer_key ../device_planner/frbc/frbc_state.py:346 -│ │ │ │ │ │ │ │ ├─ 0.097 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 -│ │ │ │ │ │ │ │ └─ 0.065 dict.get -│ │ │ │ │ │ │ ├─ 6.625 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ └─ 2.079 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 -│ │ │ │ │ │ │ ├─ 0.884 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ ├─ 0.441 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 -│ │ │ │ │ │ │ ├─ 0.220 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 -│ │ │ │ │ │ │ ├─ 0.184 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 -│ │ │ │ │ │ │ │ ├─ 0.154 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ └─ 0.030 len -│ │ │ │ │ │ │ ├─ 0.148 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 -│ │ │ │ │ │ │ │ ├─ 0.113 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 -│ │ │ │ │ │ │ │ │ ├─ 0.058 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:89 -│ │ │ │ │ │ │ │ │ │ ├─ 0.042 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ │ │ └─ 0.016 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.032 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.018 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ ├─ 0.006 dict.get -│ │ │ │ │ │ │ │ ├─ 0.004 dict.keys -│ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ ├─ 0.105 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ ├─ 0.045 list.append -│ │ │ │ │ │ │ ├─ 0.024 S2FrbcDeviceStateWrapper.operation_mode_uses_factor ../device_planner/frbc/s2_frbc_device_state_wrapper.py:119 -│ │ │ │ │ │ │ │ ├─ 0.013 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ └─ 0.011 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 -│ │ │ │ │ │ │ │ ├─ 0.006 FrbcOperationModeWrapper.__init__ ../device_planner/frbc/frbc_operation_mode_wrapper.py:38 -│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/frbc_operation_mode_wrapper.py -│ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeWrapper.calculate_uses_factor ../device_planner/frbc/frbc_operation_mode_wrapper.py:48 -│ │ │ │ │ │ │ │ │ ├─ 0.001 abs -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_operation_mode_wrapper.py -│ │ │ │ │ │ │ │ ├─ 0.003 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:109 -│ │ │ │ │ │ │ │ │ ├─ 0.002 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ └─ 0.001 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ ├─ 0.022 S2FrbcDeviceStateWrapper.get_normal_operation_modes_for_actuator ../device_planner/frbc/s2_frbc_device_state_wrapper.py:72 -│ │ │ │ │ │ │ │ ├─ 0.014 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ ├─ 0.005 dict.get -│ │ │ │ │ │ │ │ └─ 0.003 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ ├─ 0.004 len -│ │ │ │ │ │ │ └─ 0.002 dict.keys -│ │ │ │ │ │ ├─ 1.545 FrbcTimestep.get_final_states_within_fill_level_target ../device_planner/frbc/frbc_timestep.py:132 -│ │ │ │ │ │ │ ├─ 1.438 ../device_planner/frbc/frbc_timestep.py:136 -│ │ │ │ │ │ │ │ ├─ 1.320 FrbcTimestep.state_is_within_fill_level_target_range ../device_planner/frbc/frbc_timestep.py:146 -│ │ │ │ │ │ │ │ │ ├─ 0.833 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ │ │ ├─ 0.187 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 -│ │ │ │ │ │ │ │ │ ├─ 0.168 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ │ └─ 0.132 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ └─ 0.118 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ ├─ 0.078 FrbcTimestep.get_final_states ../device_planner/frbc/frbc_timestep.py:124 -│ │ │ │ │ │ │ │ ├─ 0.072 ../device_planner/frbc/frbc_timestep.py:125 -│ │ │ │ │ │ │ │ └─ 0.006 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ └─ 0.005 FrbcTimestep.get_fill_level_target_distance ../device_planner/frbc/frbc_timestep.py:157 -│ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ └─ 0.002 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 -│ │ │ │ │ │ ├─ 1.154 FrbcTimestep.clear ../device_planner/frbc/frbc_timestep.py:171 -│ │ │ │ │ │ ├─ 0.317 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ │ ├─ 0.055 OperationModeProfileTree.convert_to_plan ../device_planner/frbc/operation_mode_profile_tree.py:316 -│ │ │ │ │ │ │ ├─ 0.023 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ │ │ ├─ 0.010 FrbcState.get_previous_state ../device_planner/frbc/frbc_state.py:479 -│ │ │ │ │ │ │ ├─ 0.007 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 -│ │ │ │ │ │ │ ├─ 0.005 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 -│ │ │ │ │ │ │ ├─ 0.005 FrbcState.get_selection_reason ../device_planner/frbc/frbc_state.py:512 -│ │ │ │ │ │ │ ├─ 0.004 FrbcState.get_timestep_energy ../device_planner/frbc/frbc_state.py:491 -│ │ │ │ │ │ │ └─ 0.001 JouleProfile.__init__ ../common/joule_profile.py:8 -│ │ │ │ │ │ ├─ 0.013 ../device_planner/frbc/operation_mode_profile_tree.py:301 -│ │ │ │ │ │ │ ├─ 0.009 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ │ │ └─ 0.004 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ ├─ 0.012 FrbcTimestep.set_targets ../device_planner/frbc/frbc_timestep.py:60 -│ │ │ │ │ │ ├─ 0.004 find_best_end_state ../device_planner/frbc/operation_mode_profile_tree.py:308 -│ │ │ │ │ │ │ ├─ 0.002 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 -│ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ └─ 0.001 abs -│ │ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ │ ├─ 0.001 TargetProfile.get_elements ../common/target_profile.py:159 -│ │ │ │ │ │ └─ 0.001 JouleProfile.get_elements ../common/abstract_profile.py:78 -│ │ │ │ │ ├─ 0.028 TargetProfile.add ../common/target_profile.py:125 -│ │ │ │ │ │ ├─ 0.011 [self] ../common/target_profile.py -│ │ │ │ │ │ ├─ 0.006 JouleElement.__init__ ../common/target_profile.py:15 -│ │ │ │ │ │ ├─ 0.006 JouleProfile.get_energy_for_timestep ../common/joule_profile.py:196 -│ │ │ │ │ │ │ ├─ 0.005 [self] ../common/joule_profile.py -│ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ ├─ 0.003 JouleElement.get_joules ../common/target_profile.py:18 -│ │ │ │ │ │ └─ 0.002 list.append -│ │ │ │ │ ├─ 0.016 [self] ../device_planner/frbc/s2_frbc_device_planner.py -│ │ │ │ │ ├─ 0.006 JouleProfile.add ../common/joule_profile.py:110 -│ │ │ │ │ │ ├─ 0.005 [self] ../common/joule_profile.py -│ │ │ │ │ │ └─ 0.001 JouleProfile.default_value ../common/joule_profile.py:75 -│ │ │ │ │ ├─ 0.004 S2FrbcDevicePlanner.is_storage_available ../device_planner/frbc/s2_frbc_device_planner.py:61 -│ │ │ │ │ │ └─ 0.004 get_latest_before ../device_planner/frbc/operation_mode_profile_tree.py:203 -│ │ │ │ │ │ ├─ 0.003 datetime.replace -│ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ └─ 0.001 S2FrbcPlan.get_energy ../device_planner/frbc/s2_frbc_plan.py:24 -│ │ │ │ ├─ 1.223 Proposal.is_preferred_to ../common/proposal.py:105 -│ │ │ │ │ └─ 1.223 Proposal.get_global_improvement_value ../common/proposal.py:29 -│ │ │ │ │ ├─ 1.144 TargetProfile.subtract ../common/target_profile.py:104 -│ │ │ │ │ │ ├─ 0.810 [self] ../common/target_profile.py -│ │ │ │ │ │ ├─ 0.315 JouleElement.__init__ ../common/target_profile.py:15 -│ │ │ │ │ │ ├─ 0.011 JouleProfile.get_energy_for_timestep ../common/joule_profile.py:196 -│ │ │ │ │ │ │ ├─ 0.006 [self] ../common/joule_profile.py -│ │ │ │ │ │ │ └─ 0.005 len -│ │ │ │ │ │ ├─ 0.005 JouleElement.get_joules ../common/target_profile.py:18 -│ │ │ │ │ │ └─ 0.003 list.append -│ │ │ │ │ ├─ 0.052 TargetProfile.sum_quadratic_distance ../common/target_profile.py:146 -│ │ │ │ │ │ ├─ 0.046 ../common/target_profile.py:147 -│ │ │ │ │ │ │ ├─ 0.035 [self] ../common/target_profile.py -│ │ │ │ │ │ │ ├─ 0.008 JouleElement.get_joules ../common/target_profile.py:18 -│ │ │ │ │ │ │ └─ 0.003 isinstance -│ │ │ │ │ │ └─ 0.006 [self] ../common/target_profile.py -│ │ │ │ │ ├─ 0.022 TargetProfile.add ../common/target_profile.py:125 -│ │ │ │ │ │ ├─ 0.016 [self] ../common/target_profile.py -│ │ │ │ │ │ ├─ 0.004 JouleElement.__init__ ../common/target_profile.py:15 -│ │ │ │ │ │ ├─ 0.001 list.append -│ │ │ │ │ │ └─ 0.001 JouleProfile.get_energy_for_timestep ../common/joule_profile.py:196 -│ │ │ │ │ └─ 0.005 [self] ../common/proposal.py -│ │ │ │ ├─ 0.040 Proposal.get_congestion_improvement_value ../common/proposal.py:60 -│ │ │ │ │ ├─ 0.015 JouleProfile.subtract ../common/joule_profile.py:125 -│ │ │ │ │ │ ├─ 0.013 [self] ../common/joule_profile.py -│ │ │ │ │ │ └─ 0.002 JouleProfile.default_value ../common/joule_profile.py:75 -│ │ │ │ │ ├─ 0.013 JouleProfile.add ../common/joule_profile.py:110 -│ │ │ │ │ │ ├─ 0.010 [self] ../common/joule_profile.py -│ │ │ │ │ │ ├─ 0.002 JouleProfile.default_value ../common/joule_profile.py:75 -│ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ ├─ 0.007 JouleProfile.minimum ../common/joule_profile.py:165 -│ │ │ │ │ │ ├─ 0.003 ../common/joule_profile.py:169 -│ │ │ │ │ │ ├─ 0.003 JouleProfile.__init__ ../common/joule_profile.py:8 -│ │ │ │ │ │ │ └─ 0.003 JouleProfile.__init__ ../common/abstract_profile.py:11 -│ │ │ │ │ │ │ └─ 0.003 JouleProfile.validate ../common/joule_profile.py:71 -│ │ │ │ │ │ │ ├─ 0.002 JouleProfile.validate ../common/abstract_profile.py:56 -│ │ │ │ │ │ │ └─ 0.001 [self] ../common/joule_profile.py -│ │ │ │ │ │ └─ 0.001 [self] ../common/joule_profile.py -│ │ │ │ │ ├─ 0.003 JouleProfile.maximum ../common/joule_profile.py:176 -│ │ │ │ │ │ ├─ 0.002 ../common/joule_profile.py:180 -│ │ │ │ │ │ └─ 0.001 [self] ../common/joule_profile.py -│ │ │ │ │ └─ 0.002 JouleProfile.__init__ ../common/joule_profile.py:8 -│ │ │ │ │ └─ 0.002 JouleProfile.__init__ ../common/abstract_profile.py:11 -│ │ │ │ │ ├─ 0.001 ProfileMetadata.__init__ ../common/profile_metadata.py:9 -│ │ │ │ │ └─ 0.001 [self] ../common/abstract_profile.py -│ │ │ │ └─ 0.005 CongestionPointPlanner.get_current_planning ../congestion_point_planner.py:219 -│ │ │ │ └─ 0.005 JouleProfile.add ../common/joule_profile.py:110 -│ │ │ │ ├─ 0.004 [self] ../common/joule_profile.py -│ │ │ │ └─ 0.001 JouleProfile.__init__ ../common/joule_profile.py:8 -│ │ │ │ └─ 0.001 JouleProfile.__init__ ../common/abstract_profile.py:11 -│ │ │ │ └─ 0.001 JouleProfile.validate ../common/joule_profile.py:71 -│ │ │ ├─ 80.752 CongestionPointPlanner.create_initial_planning ../congestion_point_planner.py:51 -│ │ │ │ └─ 80.752 S2FrbcDevicePlanner.create_initial_planning ../device_planner/frbc/s2_frbc_device_planner.py:136 -│ │ │ │ ├─ 80.750 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 -│ │ │ │ │ ├─ 80.583 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 -│ │ │ │ │ │ ├─ 79.786 try_create_next_state ../device_planner/frbc/frbc_state.py:357 -│ │ │ │ │ │ │ ├─ 63.218 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 -│ │ │ │ │ │ │ │ ├─ 16.102 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ ├─ 8.036 UUID.__init__ uuid.py:138 -│ │ │ │ │ │ │ │ │ ├─ 5.824 [self] uuid.py -│ │ │ │ │ │ │ │ │ ├─ 1.327 str.replace -│ │ │ │ │ │ │ │ │ ├─ 0.366 list.count -│ │ │ │ │ │ │ │ │ ├─ 0.289 str.strip -│ │ │ │ │ │ │ │ │ └─ 0.230 len -│ │ │ │ │ │ │ │ ├─ 7.552 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 -│ │ │ │ │ │ │ │ │ ├─ 4.354 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 -│ │ │ │ │ │ │ │ │ │ ├─ 2.985 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.384 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 -│ │ │ │ │ │ │ │ │ │ ├─ 0.332 abs -│ │ │ │ │ │ │ │ │ │ ├─ 0.189 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 -│ │ │ │ │ │ │ │ │ │ ├─ 0.173 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 -│ │ │ │ │ │ │ │ │ │ ├─ 0.154 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 -│ │ │ │ │ │ │ │ │ │ └─ 0.137 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 -│ │ │ │ │ │ │ │ │ ├─ 1.925 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ │ │ ├─ 0.751 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 -│ │ │ │ │ │ │ │ │ ├─ 0.315 FrbcState.get_bucket ../device_planner/frbc/frbc_state.py:488 -│ │ │ │ │ │ │ │ │ ├─ 0.193 FrbcState.set_selection_reason ../device_planner/frbc/frbc_state.py:509 -│ │ │ │ │ │ │ │ │ └─ 0.013 FrbcState.get_fill_level_distance ../device_planner/frbc/frbc_state.py:469 -│ │ │ │ │ │ │ │ ├─ 6.904 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 -│ │ │ │ │ │ │ │ │ ├─ 4.324 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 -│ │ │ │ │ │ │ │ │ │ ├─ 2.305 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.677 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.324 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.157 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.147 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ │ │ ├─ 1.759 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.152 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 -│ │ │ │ │ │ │ │ │ │ └─ 0.108 next -│ │ │ │ │ │ │ │ │ ├─ 2.291 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ └─ 0.289 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 -│ │ │ │ │ │ │ │ ├─ 5.452 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 -│ │ │ │ │ │ │ │ │ ├─ 3.612 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 -│ │ │ │ │ │ │ │ │ │ ├─ 1.902 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 -│ │ │ │ │ │ │ │ │ │ │ ├─ 1.347 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.304 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.136 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.115 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ │ │ ├─ 1.457 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.139 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 -│ │ │ │ │ │ │ │ │ │ └─ 0.114 next -│ │ │ │ │ │ │ │ │ ├─ 1.392 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.155 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 -│ │ │ │ │ │ │ │ │ ├─ 0.147 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ │ └─ 0.146 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ ├─ 4.523 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 -│ │ │ │ │ │ │ │ │ ├─ 2.876 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ └─ 1.647 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ ├─ 3.949 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 -│ │ │ │ │ │ │ │ │ ├─ 2.894 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 -│ │ │ │ │ │ │ │ │ │ ├─ 1.690 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.922 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 -│ │ │ │ │ │ │ │ │ │ ├─ 0.142 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 next -│ │ │ │ │ │ │ │ │ ├─ 0.883 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ └─ 0.172 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 -│ │ │ │ │ │ │ │ ├─ 2.202 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 -│ │ │ │ │ │ │ │ │ ├─ 1.740 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.289 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ └─ 0.173 FrbcTimestep.get_nr_of_buckets ../device_planner/frbc/frbc_timestep.py:57 -│ │ │ │ │ │ │ │ ├─ 1.041 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 -│ │ │ │ │ │ │ │ │ ├─ 0.940 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 -│ │ │ │ │ │ │ │ │ │ ├─ 0.721 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.667 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.043 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.033 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 isinstance -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 next -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ │ ├─ 0.126 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.090 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:344 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.049 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.041 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.034 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.007 isinstance -│ │ │ │ │ │ │ │ │ │ └─ 0.003 next -│ │ │ │ │ │ │ │ │ └─ 0.101 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ ├─ 1.006 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ ├─ 0.803 [self] uuid.py -│ │ │ │ │ │ │ │ │ └─ 0.203 isinstance -│ │ │ │ │ │ │ │ ├─ 0.962 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 -│ │ │ │ │ │ │ │ │ ├─ 0.603 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ │ │ └─ 0.359 timedelta.total_seconds -│ │ │ │ │ │ │ │ ├─ 0.763 isinstance -│ │ │ │ │ │ │ │ ├─ 0.521 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 -│ │ │ │ │ │ │ │ ├─ 0.506 UUID.__hash__ uuid.py:267 -│ │ │ │ │ │ │ │ │ ├─ 0.322 [self] uuid.py -│ │ │ │ │ │ │ │ │ └─ 0.184 hash -│ │ │ │ │ │ │ │ ├─ 0.454 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 -│ │ │ │ │ │ │ │ ├─ 0.350 S2ActuatorConfiguration.get_factor ../device_planner/frbc/s2_frbc_actuator_configuration.py:15 -│ │ │ │ │ │ │ │ ├─ 0.332 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 -│ │ │ │ │ │ │ │ │ ├─ 0.150 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 -│ │ │ │ │ │ │ │ │ │ ├─ 0.089 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.056 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.035 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.021 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 isinstance -│ │ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 next -│ │ │ │ │ │ │ │ │ ├─ 0.123 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.039 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ ├─ 0.030 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ └─ 0.009 isinstance -│ │ │ │ │ │ │ │ │ └─ 0.020 isinstance -│ │ │ │ │ │ │ │ ├─ 0.324 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 -│ │ │ │ │ │ │ │ ├─ 0.309 dict.items -│ │ │ │ │ │ │ │ ├─ 0.249 dict.copy -│ │ │ │ │ │ │ │ ├─ 0.187 dict.keys -│ │ │ │ │ │ │ │ ├─ 0.184 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 -│ │ │ │ │ │ │ │ ├─ 0.182 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 -│ │ │ │ │ │ │ │ ├─ 0.180 FrbcTimestep.get_target ../device_planner/frbc/frbc_timestep.py:109 -│ │ │ │ │ │ │ │ ├─ 0.174 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 -│ │ │ │ │ │ │ │ ├─ 0.159 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ ├─ 0.156 FrbcTimestep.get_forecasted_usage ../device_planner/frbc/frbc_timestep.py:168 -│ │ │ │ │ │ │ │ ├─ 0.150 FrbcTimestep.get_max_constraint ../device_planner/frbc/frbc_timestep.py:115 -│ │ │ │ │ │ │ │ ├─ 0.147 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 -│ │ │ │ │ │ │ │ ├─ 0.135 FrbcTimestep.get_min_constraint ../device_planner/frbc/frbc_timestep.py:112 -│ │ │ │ │ │ │ │ ├─ 0.011 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ │ ├─ 0.010 timer_key ../device_planner/frbc/frbc_state.py:346 -│ │ │ │ │ │ │ │ ├─ 0.005 dict.pop -│ │ │ │ │ │ │ │ └─ 0.001 get_initial_timer_elapse_map_for_system_description ../device_planner/frbc/frbc_state.py:208 -│ │ │ │ │ │ │ ├─ 7.669 UUID.__init__ uuid.py:138 -│ │ │ │ │ │ │ │ ├─ 5.575 [self] uuid.py -│ │ │ │ │ │ │ │ ├─ 1.251 str.replace -│ │ │ │ │ │ │ │ ├─ 0.364 list.count -│ │ │ │ │ │ │ │ ├─ 0.243 len -│ │ │ │ │ │ │ │ └─ 0.236 str.strip -│ │ │ │ │ │ │ ├─ 5.904 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ │ ├─ 1.031 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ ├─ 0.781 [self] uuid.py -│ │ │ │ │ │ │ │ └─ 0.250 isinstance -│ │ │ │ │ │ │ ├─ 0.533 UUID.__hash__ uuid.py:267 -│ │ │ │ │ │ │ │ ├─ 0.352 [self] uuid.py -│ │ │ │ │ │ │ │ └─ 0.181 hash -│ │ │ │ │ │ │ ├─ 0.398 isinstance -│ │ │ │ │ │ │ ├─ 0.338 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 -│ │ │ │ │ │ │ │ ├─ 0.163 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 -│ │ │ │ │ │ │ │ │ ├─ 0.087 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ ├─ 0.065 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 -│ │ │ │ │ │ │ │ │ │ ├─ 0.044 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ │ └─ 0.021 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] uuid.py -│ │ │ │ │ │ │ │ │ │ └─ 0.003 isinstance -│ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 -│ │ │ │ │ │ │ │ │ └─ 0.005 next -│ │ │ │ │ │ │ │ ├─ 0.120 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ ├─ 0.030 UUID.__eq__ uuid.py:239 -│ │ │ │ │ │ │ │ │ ├─ 0.023 [self] uuid.py -│ │ │ │ │ │ │ │ │ └─ 0.007 isinstance -│ │ │ │ │ │ │ │ └─ 0.025 isinstance -│ │ │ │ │ │ │ ├─ 0.335 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 -│ │ │ │ │ │ │ ├─ 0.180 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 -│ │ │ │ │ │ │ ├─ 0.155 dict.items -│ │ │ │ │ │ │ ├─ 0.010 timer_key ../device_planner/frbc/frbc_state.py:346 -│ │ │ │ │ │ │ ├─ 0.009 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 -│ │ │ │ │ │ │ └─ 0.006 dict.get -│ │ │ │ │ │ ├─ 0.627 [self] ../device_planner/frbc/frbc_state.py -│ │ │ │ │ │ └─ 0.171 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 -│ │ │ │ │ │ ├─ 0.092 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ ├─ 0.024 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 -│ │ │ │ │ │ ├─ 0.016 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 -│ │ │ │ │ │ │ ├─ 0.014 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ └─ 0.002 len -│ │ │ │ │ │ ├─ 0.014 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 -│ │ │ │ │ │ │ ├─ 0.010 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 -│ │ │ │ │ │ │ │ ├─ 0.005 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:89 -│ │ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ │ └─ 0.002 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ │ ├─ 0.001 UUID.__str__ uuid.py:279 -│ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py -│ │ │ │ │ │ │ └─ 0.001 dict.get -│ │ │ │ │ │ ├─ 0.010 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 -│ │ │ │ │ │ ├─ 0.008 FrbcTimestep.get_start_date ../device_planner/frbc/frbc_timestep.py:91 -│ │ │ │ │ │ ├─ 0.005 list.append -│ │ │ │ │ │ └─ 0.002 S2FrbcDeviceStateWrapper.operation_mode_uses_factor ../device_planner/frbc/s2_frbc_device_state_wrapper.py:119 -│ │ │ │ │ ├─ 0.132 FrbcTimestep.get_final_states_within_fill_level_target ../device_planner/frbc/frbc_timestep.py:132 -│ │ │ │ │ │ ├─ 0.116 ../device_planner/frbc/frbc_timestep.py:136 -│ │ │ │ │ │ │ ├─ 0.101 FrbcTimestep.state_is_within_fill_level_target_range ../device_planner/frbc/frbc_timestep.py:146 -│ │ │ │ │ │ │ │ ├─ 0.067 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ │ │ ├─ 0.012 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 -│ │ │ │ │ │ │ │ ├─ 0.011 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ │ │ │ └─ 0.011 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 -│ │ │ │ │ │ │ └─ 0.015 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ ├─ 0.011 FrbcTimestep.get_final_states ../device_planner/frbc/frbc_timestep.py:124 -│ │ │ │ │ │ │ ├─ 0.010 ../device_planner/frbc/frbc_timestep.py:125 -│ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/frbc_timestep.py -│ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_fill_level_target_distance ../device_planner/frbc/frbc_timestep.py:157 -│ │ │ │ │ │ └─ 0.001 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 -│ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ ├─ 0.005 OperationModeProfileTree.convert_to_plan ../device_planner/frbc/operation_mode_profile_tree.py:316 -│ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ │ └─ 0.001 FrbcState.get_fill_level ../device_planner/frbc/frbc_state.py:485 -│ │ │ │ │ ├─ 0.003 FrbcTimestep.clear ../device_planner/frbc/frbc_timestep.py:171 -│ │ │ │ │ ├─ 0.001 FrbcTimestep.set_targets ../device_planner/frbc/frbc_timestep.py:60 -│ │ │ │ │ ├─ 0.001 TargetProfile.get_elements ../common/target_profile.py:159 -│ │ │ │ │ └─ 0.001 find_best_end_state ../device_planner/frbc/operation_mode_profile_tree.py:308 -│ │ │ │ │ └─ 0.001 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 -│ │ │ │ └─ 0.002 null_profile ../common/target_profile.py:162 -│ │ │ │ ├─ 0.001 [self] ../common/target_profile.py -│ │ │ │ └─ 0.001 TargetProfile.__init__ ../common/target_profile.py:26 -│ │ │ ├─ 0.005 TargetProfile.subtract ../common/target_profile.py:104 -│ │ │ │ ├─ 0.003 [self] ../common/target_profile.py -│ │ │ │ ├─ 0.001 JouleElement.get_joules ../common/target_profile.py:18 -│ │ │ │ └─ 0.001 isinstance -│ │ │ ├─ 0.003 [self] ../root_planner.py -│ │ │ ├─ 0.001 S2FrbcDevicePlanner.accept_proposal ../device_planner/frbc/s2_frbc_device_planner.py:163 -│ │ │ └─ 0.001 JouleProfile.subtract ../common/joule_profile.py:125 -│ │ ├─ 0.156 PlanningServiceImpl.create_controller_tree ../planning_service_impl.py:121 -│ │ │ ├─ 0.155 S2FrbcDevicePlanner.__init__ ../device_planner/frbc/s2_frbc_device_planner.py:33 -│ │ │ │ └─ 0.155 OperationModeProfileTree.__init__ ../device_planner/frbc/operation_mode_profile_tree.py:123 -│ │ │ │ └─ 0.155 OperationModeProfileTree.generate_timesteps ../device_planner/frbc/operation_mode_profile_tree.py:138 -│ │ │ │ ├─ 0.056 get_latest_before ../device_planner/frbc/operation_mode_profile_tree.py:203 -│ │ │ │ │ ├─ 0.042 datetime.replace -│ │ │ │ │ ├─ 0.012 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ │ ├─ 0.001 ../device_planner/frbc/operation_mode_profile_tree.py:179 -│ │ │ │ │ └─ 0.001 ../device_planner/frbc/operation_mode_profile_tree.py:154 -│ │ │ │ ├─ 0.048 get_usage_forecast_for_timestep ../device_planner/frbc/operation_mode_profile_tree.py:241 -│ │ │ │ │ ├─ 0.044 sub_profile ../device_planner/frbc/usage_forecast_util.py:58 -│ │ │ │ │ │ ├─ 0.034 UsageForecastElement.split ../device_planner/frbc/usage_forecast_util.py:20 -│ │ │ │ │ │ │ ├─ 0.023 UsageForecastElement.__init__ ../device_planner/frbc/usage_forecast_util.py:9 -│ │ │ │ │ │ │ │ ├─ 0.019 datetime.replace -│ │ │ │ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/usage_forecast_util.py -│ │ │ │ │ │ │ ├─ 0.006 UsageForecastElement.date_in_element ../device_planner/frbc/usage_forecast_util.py:29 -│ │ │ │ │ │ │ │ ├─ 0.003 datetime.replace -│ │ │ │ │ │ │ │ └─ 0.003 [self] ../device_planner/frbc/usage_forecast_util.py -│ │ │ │ │ │ │ └─ 0.005 [self] ../device_planner/frbc/usage_forecast_util.py -│ │ │ │ │ │ ├─ 0.006 datetime.replace -│ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/usage_forecast_util.py -│ │ │ │ │ │ └─ 0.001 UsageForecastElement.get_usage ../device_planner/frbc/usage_forecast_util.py:14 -│ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ ├─ 0.013 get_fill_level_target_for_timestep ../device_planner/frbc/operation_mode_profile_tree.py:220 -│ │ │ │ │ ├─ 0.010 get_elements_in_range ../device_planner/frbc/fill_level_target_util.py:45 -│ │ │ │ │ │ ├─ 0.008 datetime.replace -│ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/fill_level_target_util.py -│ │ │ │ │ └─ 0.003 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ ├─ 0.011 from_storage_usage_profile ../device_planner/frbc/usage_forecast_util.py:45 -│ │ │ │ │ ├─ 0.007 UsageForecastElement.__init__ ../device_planner/frbc/usage_forecast_util.py:9 -│ │ │ │ │ │ ├─ 0.005 datetime.replace -│ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/usage_forecast_util.py -│ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/usage_forecast_util.py -│ │ │ │ ├─ 0.011 [self] ../device_planner/frbc/operation_mode_profile_tree.py -│ │ │ │ ├─ 0.008 from_fill_level_target_profile ../device_planner/frbc/fill_level_target_util.py:28 -│ │ │ │ │ ├─ 0.007 [self] ../device_planner/frbc/fill_level_target_util.py -│ │ │ │ │ └─ 0.001 datetime.astimezone -│ │ │ │ ├─ 0.003 FrbcTimestep.__init__ ../device_planner/frbc/frbc_timestep.py:30 -│ │ │ │ ├─ 0.002 datetime.astimezone -│ │ │ │ ├─ 0.002 S2FrbcDeviceStateWrapper.get_leakage_behaviours ../device_planner/frbc/s2_frbc_device_state_wrapper.py:50 -│ │ │ │ └─ 0.001 S2FrbcDeviceStateWrapper.get_usage_forecasts ../device_planner/frbc/s2_frbc_device_state_wrapper.py:53 -│ │ │ │ └─ 0.001 S2FrbcDeviceState.get_usage_forecasts ../device_planner/frbc/s2_frbc_device_state.py:66 -│ │ │ └─ 0.001 JouleRangeProfile.__init__ ../common/joule_range_profile.py:42 -│ │ │ └─ 0.001 _create_element_array ../common/joule_range_profile.py:87 -│ │ │ └─ 0.001 ../common/joule_range_profile.py:92 -│ │ └─ 0.002 S2FrbcDevicePlanner.get_device_plan ../device_planner/frbc/s2_frbc_device_planner.py:188 -│ │ └─ 0.002 convert_plan_to_instructions ../device_planner/frbc/s2_frbc_device_planner.py:202 -│ ├─ 0.007 test_frbc_device.py:595 -│ │ └─ 0.007 create_device_state test_frbc_device.py:512 -│ │ └─ 0.007 create_ev_device_state test_frbc_device.py:57 -│ │ ├─ 0.004 create_recharge_system_description test_frbc_device.py:180 -│ │ │ ├─ 0.002 uuid4 uuid.py:718 -│ │ │ │ ├─ 0.001 urandom -│ │ │ │ └─ 0.001 UUID.__init__ uuid.py:138 -│ │ │ └─ 0.002 inner s2python/validate_values_mixin.py:42 -│ │ │ └─ 0.002 FRBCActuatorDescription.__init__ pydantic/main.py:204 -│ │ │ ├─ 0.001 FRBCActuatorDescription.validate_timers_in_transitions s2python/frbc/frbc_actuator_description.py:35 -│ │ │ │ └─ 0.001 UUID.__eq__ uuid.py:239 -│ │ │ └─ 0.001 FRBCActuatorDescription.validate_operation_mode_elements_have_all_supported_commodities s2python/frbc/frbc_actuator_description.py:104 -│ │ │ └─ 0.001 len -│ │ ├─ 0.001 create_driving_system_description test_frbc_device.py:380 -│ │ │ └─ 0.001 inner s2python/validate_values_mixin.py:42 -│ │ │ └─ 0.001 FRBCSystemDescription.__init__ pydantic/main.py:204 -│ │ │ └─ 0.001 FRBCActuatorDescription.validate_timers_in_transitions s2python/frbc/frbc_actuator_description.py:35 -│ │ ├─ 0.001 create_recharge_fill_level_target_profile test_frbc_device.py:351 -│ │ │ └─ 0.001 inner s2python/validate_values_mixin.py:42 -│ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.__init__ pydantic/main.py:204 -│ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.validate_start_end_order s2python/frbc/frbc_fill_level_target_profile_element.py:26 -│ │ └─ 0.001 create_recharge_leakage_behaviour test_frbc_device.py:321 -│ └─ 0.001 ClusterPlan.get_joule_profile ../cluster_plan.py:667 -│ └─ 0.001 JouleProfile.add ../common/joule_profile.py:110 -├─ 1.263 _find_and_load :1022 -│ └─ 1.263 _find_and_load_unlocked :987 -│ ├─ 0.720 _load_unlocked :664 -│ │ └─ 0.720 SourceFileLoader.exec_module :877 -│ │ └─ 0.720 _call_with_frames_removed :233 -│ │ ├─ 0.683 ../device_planner/frbc/s2_frbc_device_planner.py:1 -│ │ │ └─ 0.683 _find_and_load :1022 -│ │ │ └─ 0.683 _find_and_load_unlocked :987 -│ │ │ └─ 0.683 _load_unlocked :664 -│ │ │ └─ 0.683 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.683 _call_with_frames_removed :233 -│ │ │ ├─ 0.680 ../device_planner/frbc/operation_mode_profile_tree.py:1 -│ │ │ │ ├─ 0.470 _find_and_load :1022 -│ │ │ │ │ └─ 0.470 _find_and_load_unlocked :987 -│ │ │ │ │ ├─ 0.410 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.410 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ ├─ 0.409 _call_with_frames_removed :233 -│ │ │ │ │ │ │ ├─ 0.265 matplotlib/pyplot.py:1 -│ │ │ │ │ │ │ │ ├─ 0.214 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.214 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.214 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.214 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.214 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.116 matplotlib/figure.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.111 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.111 matplotlib/projections/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.066 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.066 matplotlib/axes/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.039 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.037 matplotlib/axes/_axes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/tri/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/tri/_tricontour.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TriContourSet.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TriContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/tri/_triinterpolate.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/tri/_tripcolor.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/quiver.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Barbs.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Barbs._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sub re.py:202 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/axes/_secondary_axes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/axes/_base.py:747 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/category.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 dateutil/parser/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dateutil/parser/_parser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __getattr__ dateutil/__init__.py:12 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 import_module importlib/__init__.py:108 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _gcd_import :1038 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/tz/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/tz/tz.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 six.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/legend.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/dates.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/rrule.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/mlab.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/inset.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 Axes matplotlib/axes/_axes.py:67 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _preprocess_data matplotlib/__init__.py:1447 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _add_data_doc matplotlib/__init__.py:1403 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 len -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 min -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.pop -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 make_keyword_only matplotlib/_api/deprecation.py:414 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/_api/deprecation.py:456 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Parameter.replace inspect.py:2703 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isidentifier -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Axes.__init_subclass__ matplotlib/axes/_base.py:747 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 callable -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 matplotlib/axes/_base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 matplotlib/axis.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 XAxis.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 XAxis._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 deprecate_privatize_attribute.__set_name__ matplotlib/_api/deprecation.py:240 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 deprecate matplotlib/_api/deprecation.py:126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/table.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Cell.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Cell._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 matplotlib/offsetbox.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 OffsetImage.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 OffsetImage._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/offsetbox.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AuxTransformBox matplotlib/offsetbox.py:792 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _AxesBase.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _AxesBase._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_annotations inspect.py:66 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AxesBase matplotlib/axes/_base.py:549 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _axis_method_wrapper.__init__ matplotlib/axes/_base.py:52 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.replace -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 mpl_toolkits/mplot3d/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 mpl_toolkits/mplot3d/axes3d.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 mpl_toolkits/mplot3d/art3d.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 Poly3DCollection.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 Poly3DCollection._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__init__ sre_parse.py:112 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 mpl_toolkits/mplot3d/axis3d.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axis.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axis._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Axes3D.__init_subclass__ matplotlib/axes/_base.py:747 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Axes3D.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Axes3D._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _finddoc inspect.py:663 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _findclass inspect.py:653 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes3D mpl_toolkits/mplot3d/axes3d.py:41 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _axis_method_wrapper.__init__ matplotlib/axes/_base.py:52 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _preprocess_data matplotlib/__init__.py:1447 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 matplotlib/projections/geo.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 AitoffAxes.__init_subclass__ matplotlib/axes/_base.py:747 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 AitoffAxes.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 AitoffAxes._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 min -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:169 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.008 matplotlib/projections/polar.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 PolarAxes.__init_subclass__ matplotlib/axes/_base.py:747 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 RadialAxis.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RadialAxis._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 callable -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ ├─ 0.004 Figure.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Figure._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dir -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ ├─ 0.092 matplotlib/colorbar.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.089 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.088 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.087 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 matplotlib/contour.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.047 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 matplotlib/backend_bases.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.045 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.045 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.044 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.043 matplotlib/text.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.036 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.035 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 matplotlib/patches.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 StepPatch.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 StepPatch._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.pop -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _simple sre_compile.py:447 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__len__ sre_parse.py:161 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/patches.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 BoxStyle.__init_subclass__ matplotlib/patches.py:2293 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 BoxStyle.pprint_styles matplotlib/patches.py:2335 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/patches.py:2339 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/patches.py:2351 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/font_manager.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_fontmanager matplotlib/font_manager.py:1625 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 json_load matplotlib/font_manager.py:1030 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 load json/__init__.py:274 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads json/__init__.py:299 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 JSONDecoder.decode json/decoder.py:332 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 JSONDecoder.raw_decode json/decoder.py:343 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _json_decode matplotlib/font_manager.py:989 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontEntry.__init__ :2 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/font_manager.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wrapper matplotlib/__init__.py:336 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_cachedir matplotlib/__init__.py:579 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_config_or_cache_dir matplotlib/__init__.py:519 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.resolve pathlib.py:1064 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 realpath posixpath.py:392 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _joinrealpath posixpath.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 lstat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __getattr__ matplotlib/_api/__init__.py:214 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_afm.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.replace -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/textpath.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/_text_helpers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._get_field dataclasses.py:722 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field.__init__ dataclasses.py:286 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/dviread.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/mathtext.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/_mathtext.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:2249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 Text.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Text._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 unwrap inspect.py:612 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_wrapper inspect.py:632 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inspect.py:2412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/backend_tools.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/layout_engine.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.037 matplotlib/collections.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 EventCollection.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.029 EventCollection._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] re.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_setters matplotlib/artist.py:1511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/artist.py:169 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Signature.__init__ inspect.py:2920 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 matplotlib/lines.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Line2D.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Line2D._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/lines.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/spines.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ └─ 0.006 matplotlib/image.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.006 _ImageBase.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ └─ 0.006 _ImageBase._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py -│ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 -│ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 -│ │ │ │ │ │ │ │ │ ├─ 0.001 is_alias matplotlib/artist.py:1536 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip -│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 -│ │ │ │ │ │ │ │ ├─ 0.042 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ ├─ 0.041 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 matplotlib/style/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ ├─ 0.040 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.040 matplotlib/style/core.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.040 read_style_directory matplotlib/style/core.py:198 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.040 _rc_params_in_file matplotlib/__init__.py:884 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.038 RcParams.__setitem__ matplotlib/__init__.py:748 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.035 validate_cycler matplotlib/rcsetup.py:814 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.033 _DunderChecker.visit ast.py:414 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.generic_visit ast.py:420 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 _DunderChecker.visit ast.py:414 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit_Constant ast.py:430 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 iter_fields ast.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse ast.py:33 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 validator matplotlib/rcsetup.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_font_properties matplotlib/rcsetup.py:426 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._inner pyparsing/util.py:372 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseCache pyparsing/core.py:973 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseCache pyparsing/core.py:973 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5172 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5062 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseCache pyparsing/core.py:973 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseCache pyparsing/core.py:973 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseCache pyparsing/core.py:973 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseCache pyparsing/core.py:973 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseResults.__init__ pyparsing/results.py:176 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] matplotlib/__init__.py -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ └─ 0.001 hasattr -│ │ │ │ │ │ │ │ ├─ 0.008 _copy_docstring_and_deprecators matplotlib/pyplot.py:176 -│ │ │ │ │ │ │ │ │ ├─ 0.006 _add_pyplot_note matplotlib/pyplot.py:209 -│ │ │ │ │ │ │ │ │ │ ├─ 0.005 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.pop -│ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split -│ │ │ │ │ │ │ │ │ ├─ 0.001 make_keyword_only matplotlib/_api/deprecation.py:414 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_api/deprecation.py:456 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.replace inspect.py:2703 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ParameterKind.__call__ enum.py:359 -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/pyplot.py -│ │ │ │ │ │ │ │ └─ 0.001 Enum.__call__ enum.py:359 -│ │ │ │ │ │ │ │ └─ 0.001 Enum._create_ enum.py:483 -│ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ └─ 0.001 type.__new__ -│ │ │ │ │ │ │ └─ 0.144 pint/__init__.py:1 -│ │ │ │ │ │ │ ├─ 0.143 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.143 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ ├─ 0.142 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.142 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.142 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.142 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.142 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.142 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.142 pint/delegates/__init__.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.140 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 pint/delegates/txt_defparser/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.140 pint/delegates/txt_defparser/defparser.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.130 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.130 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.094 pint/delegates/base_defparser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.093 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 pint/facets/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.092 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.086 pint/facets/context/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 pint/facets/context/definitions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.084 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 pint/facets/plain/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.084 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.083 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.083 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.081 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.079 pint/facets/plain/definitions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.074 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.074 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.069 pint/_typing.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.069 pint/compat.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.068 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 numpy/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 numpy/lib/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 numpy/lib/index_tricks.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 numpy/matrixlib/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/matrixlib/defmatrix.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 numpy/linalg/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 numpy/linalg/linalg.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 numpy/_typing/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/_typing/_array_like.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _UnionGenericAlias.__getitem__ typing.py:1046 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__getitem__ typing.py:1046 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.copy_with typing.py:1083 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _should_collect_from_parameters typing_extensions.py:154 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_dtype_like.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing_extensions.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _should_collect_from_parameters typing_extensions.py:154 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__hash__ typing.py:1284 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_char_codes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.__getitem__ typing.py:407 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.Literal typing.py:532 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _LiteralGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _LiteralGenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _flatten_literal_params typing.py:284 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_typing/_shape.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :134 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/twodim_base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _verbose_message :244 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/npyio.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/scimath.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/type_check.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ismethod numpy/_utils/_inspect.py:13 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/ma/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/ma/core.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.__init__ numpy/ma/core.py:8389 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.getdoc numpy/ma/core.py:8394 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ma/extras.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.__init__ numpy/ma/extras.py:233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.getdoc numpy/ma/extras.py:237 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 doc_note numpy/ma/core.py:115 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/random/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 numpy/random/_pickle.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ExtensionFileLoader.exec_module :1182 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner contextlib.py:76 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SeedSequence.generate_state -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/polynomial/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/polynomial/polynomial.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/fft/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ctypeslib.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_scalar_type_map numpy/ctypeslib.py:360 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ctypeslib.py:371 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 numpy/__config__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 numpy/core/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 numpy/core/multiarray.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 numpy/core/overrides.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 create_dynamic -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/core/numeric.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/shape_base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/fromnumeric.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] numpy/core/numeric.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_add_newdocs.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 add_newdoc numpy/core/function_base.py:497 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/core/function_base.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_internal.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ctypes/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/core/getlimits.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/core/defchararray.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/numerictypes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/_type_aliases.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/compat/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/compat/py3k.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_globals.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_utils/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _register_known_types numpy/core/getlimits.py:162 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/units.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 pint/util.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/util.py:921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sre_parse.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/converters.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 NamedDefinition.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 NamedDefinition._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 NamedDefinition._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition._get_field dataclasses.py:722 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pint/facets/plain/objects.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/plain/unit.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ContextDefinition._hash_add dataclasses.py:842 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/system/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/system/definitions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/system/objects.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SystemQuantity.__init_subclass__ typing.py:1350 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/nonmultiplicative/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/nonmultiplicative/registry.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/group/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/group/objects.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupQuantity.__init_subclass__ typing.py:1350 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/registry.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/quantity.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/numpy_func.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 implement_func pint/facets/numpy/numpy_func.py:250 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 flexcache/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 flexcache/flexcache.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 NameByFileContent.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 NameByFileContent._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 NameByFileContent._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] dataclasses.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:1049 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DiskCacheByMTime flexcache/flexcache.py:463 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 version importlib/metadata/__init__.py:989 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 distribution importlib/metadata/__init__.py:963 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Distribution.from_name importlib/metadata/__init__.py:532 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib/metadata/__init__.py:580 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ └─ 0.007 flexparser/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 flexparser/flexparser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 BOF.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 BOF._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 BOF._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _recursive_repr dataclasses.py:227 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Statement._get_field dataclasses.py:722 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 version importlib/metadata/__init__.py:989 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 message_from_string email/__init__.py:32 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parser.parsestr email/parser.py:59 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parser.parse email/parser.py:41 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser.feed email/feedparser.py:173 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser._call_parse email/feedparser.py:178 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser._parsegen email/feedparser.py:218 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FeedParser._parse_headers email/feedparser.py:471 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Compat32.header_source_parse email/_policybase.py:301 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip -│ │ │ │ │ │ │ │ │ │ └─ 0.010 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.010 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.010 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ ├─ 0.009 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 pint/delegates/txt_defparser/context.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pint/delegates/txt_defparser/plain.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 DimensionDefinition.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 DimensionDefinition._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DimensionDefinition._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/system.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/defaults.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginDefaults.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginDefaults._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/block.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/txt_defparser/group.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginGroup pint/delegates/txt_defparser/group.py:30 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader._check_name_wrapper :542 -│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.002 pint/delegates/formatter/__init__.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/full.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/_to_register.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/plain.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 -│ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.001 pint/registry.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ └─ 0.001 GenericContextRegistry.__class_getitem__ typing.py:1323 -│ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 -│ │ │ │ │ │ │ │ └─ 0.001 _getframe -│ │ │ │ │ │ │ └─ 0.001 [self] pint/__init__.py -│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ └─ 0.060 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.060 _find_and_load :1022 -│ │ │ │ │ └─ 0.060 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.060 _load_unlocked :664 -│ │ │ │ │ └─ 0.060 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.059 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.059 matplotlib/__init__.py:1 -│ │ │ │ │ │ ├─ 0.039 _handle_fromlist :1053 -│ │ │ │ │ │ │ └─ 0.039 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.039 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.039 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.039 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.039 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ ├─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.037 matplotlib/rcsetup.py:1 -│ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ ├─ 0.036 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.018 matplotlib/_fontconfig_pattern.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 pyparsing/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ ├─ 0.017 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 pyparsing/core.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 srange pyparsing/core.py:6071 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore.parseImpl pyparsing/core.py:5062 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pyparsing/core.py:6208 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__instancecheck__ abc.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseElementEnhance.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Forward.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MatchFirst.__add__ pyparsing/core.py:1442 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.__eq__ pyparsing/core.py:2009 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__instancecheck__ abc.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Keyword.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _CallableType.__getitem__ typing.py:1194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserElement pyparsing/core.py:390 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 replaced_by_pep8 pyparsing/util.py:361 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.__init__ pyparsing/core.py:5779 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.leave_whitespace pyparsing/core.py:4658 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.copy pyparsing/core.py:519 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 pyparsing/common.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 pyparsing_common pyparsing/common.py:8 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Combine.__init__ pyparsing/core.py:5779 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Combine.leave_whitespace pyparsing/core.py:4658 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MatchFirst.leave_whitespace pyparsing/core.py:3880 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 And.leave_whitespace pyparsing/core.py:3880 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.leave_whitespace pyparsing/core.py:4658 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.leave_whitespace pyparsing/core.py:4658 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.leave_whitespace pyparsing/core.py:4658 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3888 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.copy pyparsing/core.py:519 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3888 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.copy pyparsing/core.py:3972 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.copy pyparsing/core.py:519 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DelimitedList.__init__ pyparsing/core.py:5183 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:5972 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:5755 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:4615 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.__init__ pyparsing/core.py:2823 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collapse_string_to_ranges pyparsing/util.py:209 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 escape_re_range_char pyparsing/util.py:241 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pyparsing/helpers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pyparsing/helpers.py:649 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 make_html_tags pyparsing/helpers.py:605 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _makeTags pyparsing/helpers.py:547 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.__init__ pyparsing/core.py:2823 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.name pyparsing/core.py:1940 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word.default_name pyparsing/core.py:1903 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Word._generateDefaultName pyparsing/core.py:2941 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 charsAsStr pyparsing/core.py:2942 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collapse_string_to_ranges pyparsing/util.py:209 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 no_escape_re_range_char pyparsing/util.py:244 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pyparsing/exceptions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lazyclassproperty.__get__ pyparsing/unicode.py:14 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ExceptionWordUnicodeSet.alphanums pyparsing/unicode.py:80 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lazyclassproperty.__get__ pyparsing/unicode.py:14 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ExceptionWordUnicodeSet.alphas pyparsing/unicode.py:70 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lazyclassproperty.__get__ pyparsing/unicode.py:14 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ExceptionWordUnicodeSet._chars_for_ranges pyparsing/unicode.py:55 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/unicode.py:63 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/util.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 acquire_lock -│ │ │ │ │ │ │ │ │ ├─ 0.016 matplotlib/colors.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.012 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 PIL/Image.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 PIL/ExifTags.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PIL/ExifTags.py:295 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:446 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Base PIL/ExifTags.py:21 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ImageMode.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/scale.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/transforms.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/transforms.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PIL/PngImagePlugin.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ImagePalette.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ └─ 0.001 make_norm_from_scale matplotlib/colors.py:2562 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_enums.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 __prepare__ enum.py:165 -│ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__init__ enum.py:82 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ ├─ 0.010 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.010 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.010 matplotlib/cm.py:1 -│ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/colorizer.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/artist.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Artist._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sub re.py:202 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector matplotlib/artist.py:1407 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist.__init_subclass__ matplotlib/artist.py:125 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist._update_set_signature_and_docstring matplotlib/artist.py:158 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:169 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ParameterKind.__call__ enum.py:359 -│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_cm_multivar.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_cm_multivar.py:148 -│ │ │ │ │ │ │ │ │ └─ 0.001 from_list matplotlib/colors.py:1080 -│ │ │ │ │ │ │ │ │ └─ 0.001 column_stack numpy/lib/shape_base.py:612 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ ├─ 0.003 _gen_cmap_registry matplotlib/cm.py:32 -│ │ │ │ │ │ │ │ ├─ 0.002 from_list matplotlib/colors.py:1080 -│ │ │ │ │ │ │ │ │ ├─ 0.001 linspace numpy/core/function_base.py:24 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 arange -│ │ │ │ │ │ │ │ │ └─ 0.001 to_rgba_array matplotlib/colors.py:418 -│ │ │ │ │ │ │ │ │ └─ 0.001 ones numpy/core/numeric.py:136 -│ │ │ │ │ │ │ │ └─ 0.001 LinearSegmentedColormap.reversed matplotlib/colors.py:1133 -│ │ │ │ │ │ │ │ └─ 0.001 LinearSegmentedColormap.__init__ matplotlib/colors.py:1011 -│ │ │ │ │ │ │ │ └─ 0.001 LinearSegmentedColormap.__init__ matplotlib/colors.py:691 -│ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/cm.py -│ │ │ │ │ │ ├─ 0.006 _rc_params_in_file matplotlib/__init__.py:884 -│ │ │ │ │ │ │ ├─ 0.004 RcParams.__setitem__ matplotlib/__init__.py:748 -│ │ │ │ │ │ │ │ ├─ 0.003 validate_font_properties matplotlib/rcsetup.py:426 -│ │ │ │ │ │ │ │ │ └─ 0.003 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 -│ │ │ │ │ │ │ │ │ ├─ 0.002 And._inner pyparsing/util.py:372 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 And.parse_string pyparsing/core.py:1145 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 And.streamline pyparsing/core.py:4073 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.streamline pyparsing/core.py:4684 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:3920 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.streamline pyparsing/core.py:4684 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.streamline pyparsing/core.py:4073 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IndentedBlock.__instancecheck__ abc.py:117 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck -│ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5172 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5062 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re_match pyparsing/core.py:3127 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re pyparsing/core.py:3106 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ └─ 0.001 _make_fontconfig_parser matplotlib/_fontconfig_pattern.py:55 -│ │ │ │ │ │ │ │ │ └─ 0.001 comma_separated matplotlib/_fontconfig_pattern.py:57 -│ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__add__ pyparsing/core.py:5977 -│ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__add__ pyparsing/core.py:1442 -│ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 -│ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:3846 -│ │ │ │ │ │ │ │ └─ 0.001 validate_color matplotlib/rcsetup.py:332 -│ │ │ │ │ │ │ │ └─ 0.001 is_color_like matplotlib/colors.py:223 -│ │ │ │ │ │ │ │ └─ 0.001 to_rgba matplotlib/colors.py:277 -│ │ │ │ │ │ │ │ └─ 0.001 _to_rgba_no_colorcycle matplotlib/colors.py:324 -│ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 -│ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__init__ sre_parse.py:225 -│ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 -│ │ │ │ │ │ │ ├─ 0.001 str.split -│ │ │ │ │ │ │ └─ 0.001 _strip_comment matplotlib/cbook.py:468 -│ │ │ │ │ │ ├─ 0.002 _check_versions matplotlib/__init__.py:245 -│ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.001 import_module importlib/__init__.py:108 -│ │ │ │ │ │ │ └─ 0.001 _gcd_import :1038 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 -│ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 -│ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ ├─ 0.001 __build_class__ -│ │ │ │ │ │ └─ 0.001 matplotlib/__init__.py:1012 -│ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 _classify_pyc :585 -│ │ │ │ └─ 0.210 RegistryMeta.__call__ pint/facets/plain/registry.py:156 -│ │ │ │ └─ 0.210 UnitRegistry._after_init pint/facets/system/registry.py:70 -│ │ │ │ └─ 0.210 UnitRegistry._after_init pint/facets/group/registry.py:58 -│ │ │ │ └─ 0.210 UnitRegistry._after_init pint/facets/plain/registry.py:328 -│ │ │ │ ├─ 0.142 UnitRegistry.load_definitions pint/facets/plain/registry.py:580 -│ │ │ │ │ ├─ 0.131 DefParser.parse_file pint/delegates/txt_defparser/defparser.py:121 -│ │ │ │ │ │ └─ 0.131 parse flexparser/flexparser.py:1610 -│ │ │ │ │ │ ├─ 0.130 _PintParser.parse flexparser/flexparser.py:1218 -│ │ │ │ │ │ │ └─ 0.130 _PintParser.parse_file pint/delegates/txt_defparser/defparser.py:53 -│ │ │ │ │ │ │ └─ 0.130 _PintParser.parse_file flexparser/flexparser.py:1265 -│ │ │ │ │ │ │ └─ 0.130 _PintParser.parse_bytes flexparser/flexparser.py:1248 -│ │ │ │ │ │ │ └─ 0.130 PintRootBlock.consume_body_closing flexparser/flexparser.py:1011 -│ │ │ │ │ │ │ └─ 0.130 PintRootBlock.consume_body flexparser/flexparser.py:981 -│ │ │ │ │ │ │ ├─ 0.063 UnitDefinition.consume flexparser/flexparser.py:819 -│ │ │ │ │ │ │ │ ├─ 0.050 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 -│ │ │ │ │ │ │ │ │ ├─ 0.035 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 -│ │ │ │ │ │ │ │ │ │ ├─ 0.026 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.026 ParserHelper.from_string pint/util.py:749 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 EvalTreeNode.evaluate pint/pint_eval.py:345 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 EvalTreeNode.evaluate pint/pint_eval.py:345 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 EvalTreeNode.evaluate pint/pint_eval.py:345 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.eval_token pint/util.py:732 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.from_word pint/util.py:713 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.__init__ pint/util.py:709 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ParserHelper.eval_token pint/util.py:732 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserHelper.from_word pint/util.py:713 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserHelper.__init__ pint/util.py:709 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ParserHelper.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _power pint/pint_eval.py:51 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ParserHelper.__mul__ pint/util.py:854 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ParserHelper.copy pint/util.py:803 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.__copy__ pint/util.py:798 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__copy__ pint/util.py:616 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.operate pint/util.py:830 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 build_eval_tree pint/pint_eval.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _plain_tokenizer pint/pint_eval.py:91 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _tokenize tokenize.py:431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] tokenize.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.strip -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tokenize tokenize.py:406 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 detect_encoding tokenize.py:297 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 find_cookie tokenize.py:327 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _build_eval_tree pint/pint_eval.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/pint_eval.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 string_preprocessor pint/util.py:928 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Pattern.sub -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _subx re.py:324 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Number.__instancecheck__ abc.py:117 -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.keys _collections_abc.py:836 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 KeysView.__iter__ _collections_abc.py:885 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 pint/delegates/txt_defparser/plain.py:148 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/delegates/txt_defparser/plain.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.strip -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/delegates/txt_defparser/plain.py -│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__init__ :2 -│ │ │ │ │ │ │ │ │ ├─ 0.011 DerivedDimensionDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:231 -│ │ │ │ │ │ │ │ │ │ ├─ 0.010 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.010 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 ParserHelper.from_string pint/util.py:749 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 build_eval_tree pint/pint_eval.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _plain_tokenizer pint/pint_eval.py:91 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _tokenize tokenize.py:431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 tokenize tokenize.py:406 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 detect_encoding tokenize.py:297 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 find_cookie tokenize.py:327 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] tokenize.py -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _power pint/pint_eval.py:51 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__pow__ pint/util.py:869 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.__init__ pint/util.py:709 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 string_preprocessor pint/util.py:928 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 DerivedDimensionDefinition.__init__ :2 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 DerivedDimensionDefinition.__post_init__ pint/facets/plain/definitions.py:242 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 KeysView.__iter__ _collections_abc.py:885 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__iter__ pint/util.py:549 -│ │ │ │ │ │ │ │ │ └─ 0.004 PrefixDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:84 -│ │ │ │ │ │ │ │ │ └─ 0.004 ParserConfig.to_number pint/delegates/base_defparser.py:54 -│ │ │ │ │ │ │ │ │ └─ 0.004 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 -│ │ │ │ │ │ │ │ │ └─ 0.004 ParserHelper.from_string pint/util.py:749 -│ │ │ │ │ │ │ │ │ └─ 0.004 build_eval_tree pint/pint_eval.py:528 -│ │ │ │ │ │ │ │ │ └─ 0.004 _plain_tokenizer pint/pint_eval.py:91 -│ │ │ │ │ │ │ │ │ └─ 0.004 _tokenize tokenize.py:431 -│ │ │ │ │ │ │ │ │ ├─ 0.003 _compile tokenize.py:99 -│ │ │ │ │ │ │ │ │ │ └─ 0.003 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ └─ 0.003 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] tokenize.py -│ │ │ │ │ │ │ │ └─ 0.013 StatementIterator.peek flexparser/flexparser.py:699 -│ │ │ │ │ │ │ │ ├─ 0.011 StatementIterator._get_next flexparser/flexparser.py:687 -│ │ │ │ │ │ │ │ │ ├─ 0.010 StatementIterator._get_next_strip flexparser/flexparser.py:671 -│ │ │ │ │ │ │ │ │ │ ├─ 0.005 Spliter.__next__ flexparser/flexparser.py:532 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 Statement.from_statement_iterator_element flexparser/flexparser.py:181 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Statement.set_position flexparser/flexparser.py:207 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ ├─ 0.058 GroupDefinition.consume flexparser/flexparser.py:1033 -│ │ │ │ │ │ │ │ ├─ 0.030 GroupDefinition.consume_body_closing flexparser/flexparser.py:1011 -│ │ │ │ │ │ │ │ │ ├─ 0.021 GroupDefinition.consume_body flexparser/flexparser.py:981 -│ │ │ │ │ │ │ │ │ │ ├─ 0.020 UnitDefinition.consume flexparser/flexparser.py:819 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.020 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 ParserHelper.from_string pint/util.py:749 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 build_eval_tree pint/pint_eval.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _plain_tokenizer pint/pint_eval.py:91 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _tokenize tokenize.py:431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 EvalTreeNode.evaluate pint/pint_eval.py:345 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 EvalTreeNode.evaluate pint/pint_eval.py:345 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.eval_token pint/util.py:732 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.from_word pint/util.py:713 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__truediv__ pint/util.py:875 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.operate pint/util.py:830 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 string_preprocessor pint/util.py:928 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _subx re.py:324 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/plain.py:148 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.keys _collections_abc.py:836 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 ForwardRelation.from_string_and_config pint/delegates/txt_defparser/context.py:59 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ForwardRelation._from_string_and_context_sep pint/delegates/txt_defparser/context.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 pint/delegates/txt_defparser/context.py:47 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 ParserHelper.from_string pint/util.py:749 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 build_eval_tree pint/pint_eval.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _plain_tokenizer pint/pint_eval.py:91 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 tokenize tokenize.py:406 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 detect_encoding tokenize.py:297 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] tokenize.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 find_cookie tokenize.py:327 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.match -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _build_eval_tree pint/pint_eval.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.replace -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 string_preprocessor pint/util.py:928 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/delegates/base_defparser.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/delegates/txt_defparser/context.py -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitDefinition.set_position flexparser/flexparser.py:207 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BidirectionalRelation.from_string_and_config pint/delegates/txt_defparser/context.py:75 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BidirectionalRelation._from_string_and_context_sep pint/delegates/txt_defparser/context.py:35 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/txt_defparser/context.py:47 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.from_string pint/util.py:749 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 build_eval_tree pint/pint_eval.py:528 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _plain_tokenizer pint/pint_eval.py:91 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ └─ 0.009 GroupDefinition.consume_closing flexparser/flexparser.py:997 -│ │ │ │ │ │ │ │ │ ├─ 0.005 ContextDefinition.closing_classes flexparser/flexparser.py:954 -│ │ │ │ │ │ │ │ │ │ └─ 0.005 ContextDefinition.specialization flexparser/flexparser.py:127 -│ │ │ │ │ │ │ │ │ │ ├─ 0.004 ContextDefinition._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 DirectiveBlock._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Block._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr -│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ ├─ 0.003 EndDirectiveBlock.consume flexparser/flexparser.py:819 -│ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator.peek flexparser/flexparser.py:699 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 StatementIterator._get_next flexparser/flexparser.py:687 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 StatementIterator._get_next_strip flexparser/flexparser.py:671 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spliter.__next__ flexparser/flexparser.py:532 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search -│ │ │ │ │ │ │ │ │ │ └─ 0.001 deque.append -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ └─ 0.028 SystemDefinition.consume_opening flexparser/flexparser.py:967 -│ │ │ │ │ │ │ │ ├─ 0.027 SystemDefinition.opening_classes flexparser/flexparser.py:936 -│ │ │ │ │ │ │ │ │ ├─ 0.020 SystemDefinition.specialization flexparser/flexparser.py:127 -│ │ │ │ │ │ │ │ │ │ ├─ 0.014 SystemDefinition._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 DirectiveBlock._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getattr -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Block._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _summarize flexparser/flexparser.py:94 -│ │ │ │ │ │ │ │ │ ├─ 0.005 _yield_types flexparser/flexparser.py:369 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 isclass inspect.py:191 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 issubclass -│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ └─ 0.001 BeginContext.consume flexparser/flexparser.py:819 -│ │ │ │ │ │ │ ├─ 0.008 PintRootBlock.body_classes flexparser/flexparser.py:945 -│ │ │ │ │ │ │ │ ├─ 0.005 _yield_types flexparser/flexparser.py:369 -│ │ │ │ │ │ │ │ │ ├─ 0.003 _yield_types flexparser/flexparser.py:369 -│ │ │ │ │ │ │ │ │ │ └─ 0.003 isclass inspect.py:191 -│ │ │ │ │ │ │ │ │ ├─ 0.001 get_args typing.py:1929 -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ └─ 0.003 PintRootBlock.specialization flexparser/flexparser.py:127 -│ │ │ │ │ │ │ │ └─ 0.003 PintRootBlock._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ └─ 0.003 RootBlock._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py -│ │ │ │ │ │ │ │ └─ 0.001 Block._specialization flexparser/flexparser.py:107 -│ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py -│ │ │ │ │ │ └─ 0.001 flexparser/flexparser.py:1694 -│ │ │ │ │ │ └─ 0.001 PintRootBlock.filter_by flexparser/flexparser.py:916 -│ │ │ │ │ │ └─ 0.001 flexparser/flexparser.py:920 -│ │ │ │ │ │ └─ 0.001 PintRootBlock.__iter__ flexparser/flexparser.py:889 -│ │ │ │ │ ├─ 0.008 UnitRegistry._helper_dispatch_adder pint/facets/plain/registry.py:486 -│ │ │ │ │ │ ├─ 0.004 UnitRegistry._add_system pint/facets/system/registry.py:87 -│ │ │ │ │ │ │ └─ 0.004 System.from_definition pint/facets/system/objects.py:148 -│ │ │ │ │ │ │ └─ 0.004 UnitRegistry.get_root_units pint/facets/plain/registry.py:802 -│ │ │ │ │ │ │ ├─ 0.003 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 -│ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 -│ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ ├─ 0.001 UnitRegistry._add_group pint/facets/group/registry.py:89 -│ │ │ │ │ │ │ └─ 0.001 Group.from_definition pint/facets/group/objects.py:196 -│ │ │ │ │ │ │ └─ 0.001 Group.__init__ pint/facets/group/objects.py:61 -│ │ │ │ │ │ └─ 0.001 UnitRegistry.add_context pint/facets/context/registry.py:79 -│ │ │ │ │ │ └─ 0.001 Context.from_definition pint/facets/context/objects.py:168 -│ │ │ │ │ │ └─ 0.001 UnitRegistry.get_dimensionality pint/facets/plain/registry.py:710 -│ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 -│ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ └─ 0.001 _is_dim pint/util.py:944 -│ │ │ │ │ ├─ 0.002 DefParser.iter_parsed_project pint/delegates/txt_defparser/defparser.py:75 -│ │ │ │ │ │ ├─ 0.001 isinstance -│ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 -│ │ │ │ │ │ └─ 0.001 ContextDefinition.errors flexparser/flexparser.py:922 -│ │ │ │ │ │ └─ 0.001 ContextDefinition.filter_by flexparser/flexparser.py:916 -│ │ │ │ │ │ └─ 0.001 flexparser/flexparser.py:920 -│ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ └─ 0.068 UnitRegistry._build_cache pint/facets/context/registry.py:119 -│ │ │ │ └─ 0.068 UnitRegistry._build_cache pint/facets/plain/registry.py:605 -│ │ │ │ ├─ 0.021 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 -│ │ │ │ │ ├─ 0.013 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ ├─ 0.011 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ ├─ 0.008 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitsContainer.__getitem__ pint/util.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__contains__ collections/__init__.py:1000 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 collections/__init__.py:1001 -│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 -│ │ │ │ │ │ │ │ ├─ 0.003 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ │ │ ├─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 -│ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.is_base pint/facets/plain/definitions.py:190 -│ │ │ │ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ │ └─ 0.002 [self] pint/facets/plain/registry.py -│ │ │ │ │ ├─ 0.003 ParserHelper.__eq__ pint/util.py:820 -│ │ │ │ │ │ ├─ 0.002 ParserHelper.__eq__ pint/util.py:574 -│ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py -│ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 -│ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck -│ │ │ │ │ │ └─ 0.001 [self] pint/util.py -│ │ │ │ │ ├─ 0.002 ParserHelper.__hash__ pint/util.py:806 -│ │ │ │ │ │ ├─ 0.001 ParserHelper.__hash__ pint/util.py:561 -│ │ │ │ │ │ │ └─ 0.001 udict.items -│ │ │ │ │ │ └─ 0.001 [self] pint/util.py -│ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 -│ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ └─ 0.001 pint/facets/plain/registry.py:911 -│ │ │ │ ├─ 0.019 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ └─ 0.019 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ └─ 0.019 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ ├─ 0.012 [self] pint/facets/plain/registry.py -│ │ │ │ │ ├─ 0.005 str.startswith -│ │ │ │ │ └─ 0.002 ChainMap.__contains__ collections/__init__.py:1000 -│ │ │ │ ├─ 0.015 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 -│ │ │ │ │ ├─ 0.011 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ └─ 0.011 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ ├─ 0.010 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ │ ├─ 0.005 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 -│ │ │ │ │ │ │ │ │ ├─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 -│ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 -│ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ └─ 0.005 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ │ ├─ 0.003 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 -│ │ │ │ │ │ │ │ └─ 0.003 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ │ └─ 0.003 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ │ │ │ │ ├─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py -│ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 -│ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 -│ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 -│ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 -│ │ │ │ │ ├─ 0.002 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 -│ │ │ │ │ │ └─ 0.002 UnitsContainer.__init__ pint/util.py:452 -│ │ │ │ │ │ ├─ 0.001 udict.items -│ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 -│ │ │ │ │ │ └─ 0.001 _abc_instancecheck -│ │ │ │ │ ├─ 0.001 ParserHelper.__len__ pint/util.py:552 -│ │ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:820 -│ │ │ │ ├─ 0.005 ParserHelper.from_word pint/util.py:713 -│ │ │ │ │ ├─ 0.003 ParserHelper.__init__ pint/util.py:709 -│ │ │ │ │ │ └─ 0.003 ParserHelper.__init__ pint/util.py:452 -│ │ │ │ │ └─ 0.002 [self] pint/util.py -│ │ │ │ ├─ 0.004 solve_dependencies pint/util.py:305 -│ │ │ │ │ ├─ 0.002 pint/util.py:331 -│ │ │ │ │ ├─ 0.001 pint/util.py:340 -│ │ │ │ │ └─ 0.001 pint/util.py:329 -│ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py -│ │ │ │ ├─ 0.001 pint/facets/plain/registry.py:618 -│ │ │ │ │ └─ 0.001 UnitsContainer.keys _collections_abc.py:836 -│ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:820 -│ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:574 -│ │ │ ├─ 0.002 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:1 -│ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ ├─ 0.001 ../device_planner/frbc/frbc_timestep.py:1 -│ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_state.py:1 -│ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ └─ 0.001 open_code -│ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_operation_mode_wrapper.py:1 -│ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ └─ 0.001 FileFinder._get_spec :1531 -│ │ │ └─ 0.001 ../common/proposal.py:1 -│ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ └─ 0.001 ../device_planner/device_planner_abstract.py:1 -│ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ └─ 0.001 ../common/device_planner/device_plan.py:1 -│ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ └─ 0.001 loads -│ │ ├─ 0.034 pytest/__init__.py:1 -│ │ │ └─ 0.034 _find_and_load :1022 -│ │ │ └─ 0.034 _find_and_load_unlocked :987 -│ │ │ └─ 0.034 _load_unlocked :664 -│ │ │ └─ 0.034 SourceFileLoader.exec_module :877 -│ │ │ ├─ 0.031 _call_with_frames_removed :233 -│ │ │ │ ├─ 0.010 _pytest/_code/__init__.py:1 -│ │ │ │ │ └─ 0.010 _find_and_load :1022 -│ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.010 _load_unlocked :664 -│ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.010 _pytest/_code/code.py:1 -│ │ │ │ │ ├─ 0.007 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 -│ │ │ │ │ │ ├─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ ├─ 0.002 _pytest/_io/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ ├─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 _pytest/_io/terminalwriter.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 _pytest/compat.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 py.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ ├─ 0.002 pluggy/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.001 pluggy/_manager.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ -│ │ │ │ │ │ │ │ └─ 0.001 pluggy/_hooks.py:1 -│ │ │ │ │ │ │ ├─ 0.001 exceptiongroup/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.001 exceptiongroup/_formatting.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 register functools.py:844 -│ │ │ │ │ │ │ │ └─ 0.001 get_type_hints typing.py:1773 -│ │ │ │ │ │ │ └─ 0.001 _pytest/deprecated.py:1 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.001 _pytest/warning_types.py:1 -│ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 -│ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 -│ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ └─ 0.001 _path_isfile :159 -│ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 -│ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ ├─ 0.002 TerminalRepr.wrap dataclasses.py:1174 -│ │ │ │ │ │ └─ 0.002 TerminalRepr._process_class dataclasses.py:881 -│ │ │ │ │ │ └─ 0.002 signature inspect.py:3252 -│ │ │ │ │ │ └─ 0.002 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ └─ 0.002 _signature_from_callable inspect.py:2375 -│ │ │ │ │ │ ├─ 0.001 _signature_bound_method inspect.py:1959 -│ │ │ │ │ │ └─ 0.001 ReprEntryNative._signature_get_user_defined_method inspect.py:1867 -│ │ │ │ │ └─ 0.001 ExceptionInfo.dataclass dataclasses.py:1156 -│ │ │ │ │ └─ 0.001 ExceptionInfo.wrap dataclasses.py:1174 -│ │ │ │ │ └─ 0.001 ExceptionInfo._process_class dataclasses.py:881 -│ │ │ │ ├─ 0.009 _pytest/assertion/__init__.py:1 -│ │ │ │ │ └─ 0.009 _handle_fromlist :1053 -│ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.009 _find_and_load :1022 -│ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.009 _load_unlocked :664 -│ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.009 _pytest/assertion/rewrite.py:1 -│ │ │ │ │ ├─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ ├─ 0.005 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.005 _pytest/main.py:1 -│ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.003 _pytest/nodes.py:1 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.003 _pytest/mark/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.002 _pytest/mark/structures.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] _pytest/mark/structures.py -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ -│ │ │ │ │ │ │ │ └─ 0.001 _pytest/mark/expression.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 Token.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ └─ 0.001 Token._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ └─ 0.001 Dir _pytest/main.py:490 -│ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ └─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.003 _pytest/assertion/util.py:1 -│ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.002 _pytest/config/__init__.py:1 -│ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 -│ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ └─ 0.001 loads -│ │ │ │ ├─ 0.003 _pytest/cacheprovider.py:1 -│ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.002 _pytest/fixtures.py:1 -│ │ │ │ │ │ └─ 0.002 FixtureArgKey.wrap dataclasses.py:1174 -│ │ │ │ │ │ └─ 0.002 FixtureArgKey._process_class dataclasses.py:881 -│ │ │ │ │ │ └─ 0.002 FixtureArgKey._get_field dataclasses.py:722 -│ │ │ │ │ │ ├─ 0.001 [self] dataclasses.py -│ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ └─ 0.001 open_code -│ │ │ │ ├─ 0.002 _pytest/legacypath.py:1 -│ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.001 _pytest/pytester.py:1 -│ │ │ │ ├─ 0.002 _pytest/debugging.py:1 -│ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.002 unittest/__init__.py:1 -│ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.001 unittest/result.py:1 -│ │ │ │ ├─ 0.002 _pytest/doctest.py:1 -│ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.001 _pytest/python.py:1 -│ │ │ │ │ │ └─ 0.001 IdMaker.wrap dataclasses.py:1174 -│ │ │ │ │ │ └─ 0.001 IdMaker._process_class dataclasses.py:881 -│ │ │ │ │ │ └─ 0.001 IdMaker._hash_add dataclasses.py:842 -│ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 -│ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ └─ 0.001 __new__ abc.py:105 -│ │ │ │ │ └─ 0.001 type.__new__ -│ │ │ │ ├─ 0.001 _pytest/__init__.py:1 -│ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ └─ 0.001 _pytest/logging.py:1 -│ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ └─ 0.003 SourceFileLoader.get_code :950 -│ │ │ └─ 0.003 _compile_bytecode :670 -│ │ │ └─ 0.003 loads -│ │ ├─ 0.002 ../planning_service_impl.py:1 -│ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ ├─ 0.001 ../cluster_plan.py:1 -│ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ └─ 0.001 loads -│ │ │ └─ 0.001 ../root_planner.py:1 -│ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ └─ 0.001 ../congestion_point_planner.py:1 -│ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ └─ 0.001 ../common/joule_range_profile.py:1 -│ │ └─ 0.001 ../common/target_profile.py:1 -│ │ └─ 0.001 _find_and_load :1022 -│ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ └─ 0.001 _load_unlocked :664 -│ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ └─ 0.001 _call_with_frames_removed :233 -│ │ └─ 0.001 ../common/joule_profile.py:1 -│ │ └─ 0.001 _find_and_load :1022 -│ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ └─ 0.001 _load_unlocked :664 -│ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ └─ 0.001 _call_with_frames_removed :233 -│ │ └─ 0.001 ../common/abstract_profile.py:1 -│ │ └─ 0.001 _find_and_load :1022 -│ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ └─ 0.001 _find_spec :921 -│ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ └─ 0.001 _path_isfile :159 -│ │ └─ 0.001 _path_is_mode_type :150 -│ │ └─ 0.001 _path_stat :140 -│ │ └─ 0.001 stat -│ └─ 0.543 _call_with_frames_removed :233 -│ └─ 0.543 _find_and_load :1022 -│ └─ 0.543 _find_and_load_unlocked :987 -│ ├─ 0.314 _call_with_frames_removed :233 -│ │ └─ 0.314 _find_and_load :1022 -│ │ └─ 0.314 _find_and_load_unlocked :987 -│ │ ├─ 0.313 _call_with_frames_removed :233 -│ │ │ └─ 0.313 _find_and_load :1022 -│ │ │ └─ 0.313 _find_and_load_unlocked :987 -│ │ │ └─ 0.313 _load_unlocked :664 -│ │ │ └─ 0.313 SourceFileLoader.exec_module :877 -│ │ │ └─ 0.313 _call_with_frames_removed :233 -│ │ │ └─ 0.313 flexmeasures_s2/__init__.py:1 -│ │ │ ├─ 0.231 _handle_fromlist :1053 -│ │ │ │ └─ 0.231 _call_with_frames_removed :233 -│ │ │ │ └─ 0.231 _find_and_load :1022 -│ │ │ │ └─ 0.231 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.231 _load_unlocked :664 -│ │ │ │ └─ 0.231 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.231 _call_with_frames_removed :233 -│ │ │ │ └─ 0.231 flexmeasures_s2/api/somedata.py:1 -│ │ │ │ └─ 0.231 _find_and_load :1022 -│ │ │ │ └─ 0.231 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.231 _load_unlocked :664 -│ │ │ │ └─ 0.231 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.231 _call_with_frames_removed :233 -│ │ │ │ └─ 0.231 flask_security/__init__.py:1 -│ │ │ │ └─ 0.231 _find_and_load :1022 -│ │ │ │ └─ 0.231 _find_and_load_unlocked :987 -│ │ │ │ ├─ 0.230 _load_unlocked :664 -│ │ │ │ │ └─ 0.230 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.229 _call_with_frames_removed :233 -│ │ │ │ │ │ ├─ 0.112 flask_security/datastore.py:1 -│ │ │ │ │ │ │ └─ 0.112 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.112 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ ├─ 0.111 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.111 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.111 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.111 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.111 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ ├─ 0.110 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.110 sqlalchemy/__init__.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.071 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.071 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.071 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.071 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.071 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.071 sqlalchemy/engine/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.065 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.065 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.065 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.065 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.064 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.064 sqlalchemy/engine/events.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.062 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 sqlalchemy/engine/base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.062 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.061 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.061 sqlalchemy/engine/interfaces.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.059 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.059 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.053 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 sqlalchemy/sql/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.047 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.047 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.044 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 sqlalchemy/sql/compiler.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 sqlalchemy/sql/crud.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 sqlalchemy/sql/dml.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 sqlalchemy/sql/util.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 sqlalchemy/sql/schema.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 sqlalchemy/sql/selectable.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/sqltypes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Enum sqlalchemy/sql/sqltypes.py:1195 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/selectable.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 HasCTE sqlalchemy/sql/selectable.py:2454 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 HasSuffixes sqlalchemy/sql/selectable.py:417 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Select sqlalchemy/sql/selectable.py:5167 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SelectBase sqlalchemy/sql/selectable.py:3437 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/schema.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:222 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 sqlalchemy/sql/ddl.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 sqlalchemy/sql/elements.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] sqlalchemy/sql/elements.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ColumnElement sqlalchemy/sql/elements.py:1209 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FunctionFilter sqlalchemy/sql/elements.py:4402 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inspect_getfullargspec sqlalchemy/util/compat.py:66 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/type_api.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Protocol.__class_getitem__ typing.py:1323 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _new_module :48 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/annotation.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UpdateBase sqlalchemy/sql/dml.py:387 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 format_argspec_plus sqlalchemy/util/langhelpers.py:544 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inspect_formatargspec sqlalchemy/util/compat.py:200 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/sql/functions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/functions.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ScalarFunctionColumn.__init_subclass__ typing.py:1350 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/coercions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SQLCompiler sqlalchemy/sql/compiler.py:1033 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeCompiler.__init_subclass__ sqlalchemy/util/langhelpers.py:2010 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 fix_flags sre_parse.py:928 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 sqlalchemy/sql/base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sqlalchemy/sql/traversals.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/operators.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 comparison_op sqlalchemy/sql/operators.py:1965 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/cache_key.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1234 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__eq__ typing.py:1242 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/visitors.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.items -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ abc.py:105 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 sqlalchemy/sql/_typing.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _UnionGenericAlias.__getitem__ typing.py:1046 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1074 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/roles.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/expression.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 __go sqlalchemy/sql/__init__.py:111 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _prepare_annotations sqlalchemy/sql/annotation.py:580 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 NamedColumn._new_annotation_type sqlalchemy/sql/annotation.py:533 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] sqlalchemy/sql/annotation.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/naming.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/events.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDLEvents.__init_subclass__ sqlalchemy/event/base.py:240 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDLEvents._create_dispatcher_class sqlalchemy/event/base.py:278 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ClsLevelDispatch.__init__ sqlalchemy/event/attr.py:135 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WeakKeyDictionary.__init__ weakref.py:368 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] sqlalchemy/sql/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 sqlalchemy/pool/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 sqlalchemy/pool/events.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/pool/base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.__getitem__ typing.py:407 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.Literal typing.py:532 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _value_and_type_iter typing.py:1272 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolEvents.__init_subclass__ sqlalchemy/event/base.py:240 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolEvents._create_dispatcher_class sqlalchemy/event/base.py:278 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ClsLevelDispatch.__init__ sqlalchemy/event/attr.py:135 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _augment_fn_docs sqlalchemy/event/legacy.py:220 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inject_docstring_text sqlalchemy/util/langhelpers.py:2125 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dedent textwrap.py:422 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/pool/impl.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/api.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/event/attr.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/legacy.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CompoundListener.__class_getitem__ typing.py:1323 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConnectionEvents.__init_subclass__ sqlalchemy/event/base.py:240 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConnectionEvents._create_dispatcher_class sqlalchemy/event/base.py:278 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/base.py:293 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_event_name sqlalchemy/event/base.py:50 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Events.__class_getitem__ typing.py:1323 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/engine/cursor.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/engine/result.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/row.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Row sqlalchemy/engine/row.py:50 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CursorResult sqlalchemy/engine/cursor.py:1381 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/engine/create.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 decorate sqlalchemy/util/deprecations.py:224 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/url.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/reflection.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ReflectionInfo.dataclass dataclasses.py:1156 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ReflectionInfo.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ReflectionInfo._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ ├─ 0.037 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 sqlalchemy/util/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ ├─ 0.031 sqlalchemy/util/concurrency.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.031 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.030 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 asyncio/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 asyncio/base_events.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 concurrent/futures/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 concurrent/futures/_base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__exit__ :897 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 release_lock -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 asyncio/staggered.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/locks.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 asyncio/events.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/coroutines.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/base_futures.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/util/_concurrency_py3k.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/util/langhelpers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_literal_prefix sre_compile.py:485 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 greenlet/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 sqlalchemy/util/_collections.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/util/_has_cy.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _import_cy_extensions sqlalchemy/util/_has_cy.py:13 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/exc.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/util/typing.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DescriptorProto.__init__ typing_extensions.py:595 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DescriptorProto._get_protocol_attrs typing_extensions.py:518 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ abc.py:105 -│ │ │ │ │ │ │ │ │ └─ 0.001 __go sqlalchemy/__init__.py:275 -│ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ ├─ 0.071 flask_security/core.py:1 -│ │ │ │ │ │ │ └─ 0.071 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.071 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.071 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.071 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ ├─ 0.070 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.058 flask_security/totp.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.058 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.058 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.058 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.058 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ ├─ 0.057 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ ├─ 0.050 passlib/pwd.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.050 pkg_resources/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _call_aside pkg_resources/__init__.py:3655 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _initialize_master_working_set pkg_resources/__init__.py:3672 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 WorkingSet._build_master pkg_resources/__init__.py:647 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.__init__ pkg_resources/__init__.py:633 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.add_entry pkg_resources/__init__.py:689 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 find_on_path pkg_resources/__init__.py:2326 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 distributions_from_metadata pkg_resources/__init__.py:2397 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 safe_version pkg_resources/__init__.py:1568 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Version.__str__ packaging/version.py:234 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] packaging/version.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/version.py:247 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] pkg_resources/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 splitext posixpath.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _splitext genericpath.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dist_factory pkg_resources/__init__.py:2346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isdir genericpath.py:39 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 safe_listdir pkg_resources/__init__.py:2381 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pkg_resources/__init__.py:2337 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.endswith -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WorkingSet.add pkg_resources/__init__.py:773 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 canonicalize_name packaging/utils.py:46 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 WorkingSet.add_entry pkg_resources/__init__.py:689 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 find_on_path pkg_resources/__init__.py:2326 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 distributions_from_metadata pkg_resources/__init__.py:2397 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 safe_version pkg_resources/__init__.py:1568 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Version.__init__ packaging/version.py:188 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] packaging/version.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_local_version packaging/version.py:511 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_letter_version packaging/version.py:471 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 splitext posixpath.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _splitext genericpath.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 dist_factory pkg_resources/__init__.py:2346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 fspath -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.endswith -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pkg_resources/__init__.py:2337 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pkg_resources/__init__.py:3697 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 DistInfoDistribution.activate pkg_resources/__init__.py:3145 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DistInfoDistribution._get_metadata pkg_resources/__init__.py:3137 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathMetadata.has_metadata pkg_resources/__init__.py:1690 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathMetadata._has pkg_resources/__init__.py:1902 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 exists genericpath.py:16 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WorkingSet.__iter__ pkg_resources/__init__.py:756 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 packaging/markers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 packaging/_parser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 packaging/_tokenizer.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 packaging/specifiers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 packaging/utils.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 packaging/version.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Version packaging/version.py:161 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/tags.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/_manylinux.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Specifier packaging/specifiers.py:99 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Tokenizer.__next sre_parse.py:234 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__len__ sre_parse.py:161 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 jaraco/text/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 jaraco/context.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 backports/tarfile/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 backports/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 extend_path pkgutil.py:505 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 importlib/resources.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 singledispatch functools.py:800 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jaraco/functools/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 more_itertools/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 more_itertools/more.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 queue.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 exec_dynamic -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 platformdirs/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 plistlib.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_ident -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Tokenizer.match sre_parse.py:250 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/totp.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cryptography/hazmat/primitives/ciphers/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cryptography/hazmat/primitives/ciphers/base.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/modes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/algorithms.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrozenImporter.find_spec :826 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_frozen -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 passlib/crypto/digest.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getcwd -│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ ├─ 0.009 passlib/context.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/registry.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/ifc.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 passlib/utils/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _add_method crypt.py:88 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt crypt.py:70 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__exit__ :173 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 -│ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _LazyOverlayModule.__getattr__ passlib/utils/compat/__init__.py:437 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _import_object passlib/utils/compat/__init__.py:406 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 configparser.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 RawConfigParser configparser.py:561 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 -│ │ │ │ │ │ │ │ │ └─ 0.001 [self] passlib/context.py -│ │ │ │ │ │ │ │ ├─ 0.001 flask_security/oauth_glue.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 flask_security/oauth_provider.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.001 flask_security/unified_signin.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ └─ 0.001 flask_security/views.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__exit__ :897 -│ │ │ │ │ │ │ │ └─ 0.001 release_lock -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ ├─ 0.024 flask_security/changeable.py:1 -│ │ │ │ │ │ │ └─ 0.024 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.024 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.024 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.024 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ ├─ 0.023 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.022 flask_security/utils.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.022 flask_wtf/__init__.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ ├─ 0.021 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ ├─ 0.017 flask_wtf/form.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 flask_wtf/i18n.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 babel/support.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 babel/dates.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 babel/localtime/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 get_localzone babel/localtime/__init__.py:32 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _get_localzone babel/localtime/_unix.py:24 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _get_tzinfo babel/localtime/_helpers.py:12 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 timezone pytz/__init__.py:130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 LazySet._lazy pytz/lazy.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 LazyList._lazy pytz/lazy.py:97 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 pytz/__init__.py:1114 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 resource_exists pytz/__init__.py:111 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 open_resource pytz/__init__.py:78 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 dirname posixpath.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 exists genericpath.py:16 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 open -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pytz/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Environ.get _collections_abc.py:821 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pytz/__init__.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/localtime/_unix.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/localtime/_helpers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 zoneinfo/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 zoneinfo/_tzpath.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 reset_tzpath zoneinfo/_tzpath.py:5 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_var sysconfig.py:659 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_vars sysconfig.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_posix sysconfig.py:473 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.update -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rstrip -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pytz/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/core.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/plural.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ └─ 0.004 flask_wtf/csrf.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 wtforms/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/fields/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/validators.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HostnameValidation wtforms/validators.py:640 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 -│ │ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ │ └─ 0.001 flask_login/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.001 flask_login/login_manager.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ └─ 0.022 flask_security/change_email.py:1 -│ │ │ │ │ │ └─ 0.022 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.022 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.022 flask_security/forms.py:1 -│ │ │ │ │ │ ├─ 0.021 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 -│ │ │ │ │ │ │ ├─ 0.020 flask_security/mail_util.py:1 -│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.020 email_validator/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ ├─ 0.019 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.019 email_validator/validate_email.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.019 email_validator/syntax.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.018 email_validator/rfc_constants.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ └─ 0.018 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ ├─ 0.010 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ │ └─ 0.007 _compile_info sre_compile.py:560 -│ │ │ │ │ │ │ │ │ │ └─ 0.007 _optimize_charset sre_compile.py:292 -│ │ │ │ │ │ │ │ │ └─ 0.001 idna/__init__.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 idna/core.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 -│ │ │ │ │ │ │ │ └─ 0.001 listdir -│ │ │ │ │ │ │ └─ 0.001 flask_security/babel.py:1 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.001 importlib_resources/__init__.py:1 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.001 importlib_resources/_common.py:1 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ └─ 0.001 ForgotPasswordForm.__init__ wtforms/form.py:177 -│ │ │ │ │ │ └─ 0.001 ForgotPasswordForm.__setattr__ wtforms/form.py:211 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ └─ 0.001 open_code -│ │ │ │ └─ 0.001 [self] -│ │ │ ├─ 0.075 _find_and_load :1022 -│ │ │ │ └─ 0.075 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.075 _load_unlocked :664 -│ │ │ │ └─ 0.075 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.075 _call_with_frames_removed :233 -│ │ │ │ ├─ 0.073 flask/__init__.py:1 -│ │ │ │ │ ├─ 0.037 _handle_fromlist :1053 -│ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.037 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.037 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.037 flask/json/__init__.py:1 -│ │ │ │ │ │ └─ 0.037 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.037 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 -│ │ │ │ │ │ ├─ 0.036 flask/globals.py:1 -│ │ │ │ │ │ │ └─ 0.036 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.036 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.036 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.036 werkzeug/__init__.py:1 -│ │ │ │ │ │ │ └─ 0.036 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.036 _load_unlocked :664 -│ │ │ │ │ │ │ ├─ 0.035 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ ├─ 0.034 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.028 werkzeug/serving.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ ├─ 0.027 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 http/server.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 http/client.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ssl.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Purpose.__new__ ssl.py:457 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 txt2obj -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] enum.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntFlag._convert_ enum.py:536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:553 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ssl.py:130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 email/parser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/feedparser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _class_escape sre_parse.py:296 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.__init__ sre_parse.py:76 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 email/utils.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 email/charset.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/quoprimime.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/_parseaddr.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 calendar.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 html/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 werkzeug/urls.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 werkzeug/datastructures/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 werkzeug/datastructures/accept.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 werkzeug/datastructures/structures.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 werkzeug/http.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 urllib/request.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AbstractBasicAuthHandler urllib/request.py:939 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] werkzeug/http.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/sansio/http.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.__init__ :357 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/datastructures/csp.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _make_unquote_part werkzeug/urls.py:29 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 State.closegroup sre_parse.py:97 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 werkzeug/_internal.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 logging/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 StrFormatStyle logging/__init__.py:445 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 socket.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 IntEnum._convert_ enum.py:536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntEnum.__call__ enum.py:359 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntEnum._create_ enum.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/exceptions.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 http/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ └─ 0.006 werkzeug/test.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 werkzeug/sansio/multipart.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Epilogue.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Epilogue._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Epilogue._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/utils.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/security.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/wrappers/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.001 Cookie.dataclass dataclasses.py:1156 -│ │ │ │ │ │ │ │ │ └─ 0.001 Cookie.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ └─ 0.001 Cookie._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:572 -│ │ │ │ │ │ │ │ │ └─ 0.001 _init_param dataclasses.py:508 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ └─ 0.001 flask/json/provider.py:1 -│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.001 decimal.py:1 -│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__init__ :165 -│ │ │ │ │ └─ 0.036 _find_and_load :1022 -│ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.036 _load_unlocked :664 -│ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.036 flask/app.py:1 -│ │ │ │ │ ├─ 0.030 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.030 _find_and_load_unlocked :987 -│ │ │ │ │ │ ├─ 0.029 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.029 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.029 _call_with_frames_removed :233 -│ │ │ │ │ │ │ ├─ 0.017 flask/sansio/app.py:1 -│ │ │ │ │ │ │ │ ├─ 0.016 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ ├─ 0.015 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 flask/templating.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 jinja2/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ ├─ 0.014 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 jinja2/environment.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 jinja2/lexer.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/_identifier.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_charset sre_compile.py:265 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 jinja2/compiler.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CodeGenerator jinja2/compiler.py:300 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 optimizeconst jinja2/compiler.py:45 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/defaults.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/filters.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/runtime.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 jinja2/nodes.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/utils.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ jinja2/nodes.py:59 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Environment jinja2/environment.py:144 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/bccache.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pickle.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 -│ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 -│ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ │ │ │ └─ 0.001 App flask/sansio/app.py:59 -│ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__call__ typing.py:953 -│ │ │ │ │ │ │ ├─ 0.006 click/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.005 click/core.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 click/formatting.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ │ │ │ │ │ └─ 0.001 click/termui.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 click/types.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 click/_compat.py:1 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 click/exceptions.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 click/utils.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 LazyFile click/utils.py:106 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ └─ 0.001 MultiCommand click/core.py:1481 -│ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ └─ 0.001 click/decorators.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 -│ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 -│ │ │ │ │ │ │ ├─ 0.004 werkzeug/routing/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ └─ 0.002 loads -│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/map.py:1 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/matcher.py:1 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/rules.py:1 -│ │ │ │ │ │ │ │ ├─ 0.001 RulePart.dataclass dataclasses.py:1156 -│ │ │ │ │ │ │ │ │ └─ 0.001 RulePart.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ └─ 0.001 RulePart._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 -│ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ ├─ 0.001 flask/wrappers.py:1 -│ │ │ │ │ │ │ └─ 0.001 flask/sessions.py:1 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.001 itsdangerous/__init__.py:1 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.001 itsdangerous/serializer.py:1 -│ │ │ │ │ │ │ └─ 0.001 __new__ abc.py:105 -│ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ └─ 0.006 _handle_fromlist :1053 -│ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ ├─ 0.004 flask/cli.py:1 -│ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 -│ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 -│ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ ├─ 0.002 importlib/metadata/__init__.py:1 -│ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib/metadata/_collections.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 -│ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ └─ 0.001 hasattr -│ │ │ │ │ │ │ │ └─ 0.001 flask/helpers.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.001 flask/signals.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ └─ 0.001 blinker/__init__.py:1 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 -│ │ │ │ │ │ │ │ └─ 0.001 _unpack_uint32 :84 -│ │ │ │ │ │ │ │ └─ 0.001 int.from_bytes -│ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ └─ 0.001 flask/typing.py:1 -│ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 -│ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 -│ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 -│ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ └─ 0.001 _collect_type_vars typing.py:206 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 cache_from_source :380 -│ │ │ │ │ └─ 0.001 _path_join :126 -│ │ │ │ │ └─ 0.001 :128 -│ │ │ │ │ └─ 0.001 str.rstrip -│ │ │ │ └─ 0.002 importlib_metadata/__init__.py:1 -│ │ │ │ ├─ 0.001 EntryPoint importlib_metadata/__init__.py:136 -│ │ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ └─ 0.007 version importlib_metadata/__init__.py:1020 -│ │ │ ├─ 0.006 distribution importlib_metadata/__init__.py:994 -│ │ │ │ └─ 0.006 Distribution.from_name importlib_metadata/__init__.py:411 -│ │ │ │ └─ 0.006 bucket._get_values importlib_metadata/_itertools.py:133 -│ │ │ │ ├─ 0.004 importlib_metadata/__init__.py:930 -│ │ │ │ │ └─ 0.004 FastPath.search importlib_metadata/__init__.py:789 -│ │ │ │ │ └─ 0.004 FastPath.wrapper importlib_metadata/_functools.py:75 -│ │ │ │ │ └─ 0.004 FastPath.lookup importlib_metadata/__init__.py:798 -│ │ │ │ │ └─ 0.004 Lookup.__init__ importlib_metadata/__init__.py:808 -│ │ │ │ │ ├─ 0.002 FastPath.children importlib_metadata/__init__.py:772 -│ │ │ │ │ │ ├─ 0.001 listdir -│ │ │ │ │ │ └─ 0.001 FastPath.zip_children importlib_metadata/__init__.py:779 -│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 -│ │ │ │ │ │ └─ 0.001 _get_module_lock :179 -│ │ │ │ │ │ └─ 0.001 _ModuleLock.__init__ :71 -│ │ │ │ │ └─ 0.002 FastPath.joinpath importlib_metadata/__init__.py:769 -│ │ │ │ │ └─ 0.002 PosixPath.__new__ pathlib.py:957 -│ │ │ │ │ └─ 0.002 PosixPath._from_parts pathlib.py:589 -│ │ │ │ │ └─ 0.002 PosixPath._parse_args pathlib.py:569 -│ │ │ │ │ └─ 0.002 _PosixFlavour.parse_parts pathlib.py:56 -│ │ │ │ │ ├─ 0.001 str.split -│ │ │ │ │ └─ 0.001 [self] pathlib.py -│ │ │ │ └─ 0.002 importlib_metadata/__init__.py:456 -│ │ │ │ └─ 0.002 PathDistribution.metadata importlib_metadata/__init__.py:476 -│ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ └─ 0.002 importlib_metadata/_adapters.py:1 -│ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ └─ 0.002 email/policy.py:1 -│ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ └─ 0.002 email/headerregistry.py:1 -│ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ └─ 0.001 email/_header_value_parser.py:1 -│ │ │ │ └─ 0.001 compile re.py:249 -│ │ │ │ └─ 0.001 _compile re.py:288 -│ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ └─ 0.001 _code sre_compile.py:622 -│ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 -│ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 -│ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 -│ │ │ │ └─ 0.001 min -│ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 -│ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 -│ │ │ └─ 0.001 PathDistribution.read_text importlib_metadata/__init__.py:947 -│ │ │ └─ 0.001 PosixPath.read_text pathlib.py:1129 -│ │ │ └─ 0.001 PosixPath.open pathlib.py:1111 -│ │ └─ 0.001 _load_unlocked :664 -│ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ └─ 0.001 _call_with_frames_removed :233 -│ │ └─ 0.001 s2python/__init__.py:1 -│ │ └─ 0.001 version importlib/metadata/__init__.py:989 -│ │ └─ 0.001 distribution importlib/metadata/__init__.py:963 -│ │ └─ 0.001 Distribution.from_name importlib/metadata/__init__.py:532 -│ │ └─ 0.001 importlib_metadata/__init__.py:930 -│ │ └─ 0.001 FastPath.search importlib_metadata/__init__.py:789 -│ │ └─ 0.001 FastPath.lookup importlib_metadata/__init__.py:798 -│ │ └─ 0.001 Lookup.__init__ importlib_metadata/__init__.py:808 -│ │ └─ 0.001 FastPath.children importlib_metadata/__init__.py:772 -│ │ └─ 0.001 listdir -│ └─ 0.228 _load_unlocked :664 -│ └─ 0.228 SourceFileLoader.exec_module :877 -│ └─ 0.228 _call_with_frames_removed :233 -│ └─ 0.228 s2python/frbc/__init__.py:1 -│ └─ 0.228 _find_and_load :1022 -│ ├─ 0.227 _find_and_load_unlocked :987 -│ │ └─ 0.227 _load_unlocked :664 -│ │ └─ 0.227 SourceFileLoader.exec_module :877 -│ │ ├─ 0.226 _call_with_frames_removed :233 -│ │ │ ├─ 0.201 s2python/frbc/frbc_fill_level_target_profile_element.py:1 -│ │ │ │ ├─ 0.182 _find_and_load :1022 -│ │ │ │ │ └─ 0.182 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.182 _load_unlocked :664 -│ │ │ │ │ └─ 0.182 SourceFileLoader.exec_module :877 -│ │ │ │ │ ├─ 0.181 _call_with_frames_removed :233 -│ │ │ │ │ │ ├─ 0.180 s2python/common/__init__.py:1 -│ │ │ │ │ │ │ └─ 0.180 _find_and_load :1022 -│ │ │ │ │ │ │ ├─ 0.178 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ ├─ 0.177 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.177 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.177 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.132 s2python/generated/gen_s2.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.077 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.056 ResourceManagerDetails.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.034 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.034 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.034 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.033 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.033 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.029 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.029 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 float.lenient_issubclass pydantic/_internal/_utils.py:97 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseModel.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_subclasscheck -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_namedtuple pydantic/_internal/_typing_extra.py:357 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/_internal/_generate_schema.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._literal_schema pydantic/_internal/_generate_schema.py:1363 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 literal_values pydantic/_internal/_typing_extra.py:90 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_typing_extra.py:96 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 literal_values pydantic/_internal/_typing_extra.py:90 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_literal pydantic/_internal/_typing_extra.py:77 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 RoleType.lenient_issubclass pydantic/_internal/_utils.py:97 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 BaseModel.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RootModel.__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _abc_subclasscheck -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].__subclasscheck__ abc.py:121 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_subclasscheck -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pydantic/_internal/_generate_schema.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_type_alias_type pydantic/_internal/_typing_extra.py:209 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__getattr__ typing.py:976 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.endswith -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 new_handler pydantic/_internal/_generate_schema.py:2130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 pydantic/_internal/_generate_schema.py:2127 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 new_handler pydantic/_internal/_generate_schema.py:2130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pydantic/_internal/_generate_schema.py:2127 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._list_schema pydantic/_internal/_generate_schema.py:366 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_annotated pydantic/_internal/_typing_extra.py:99 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_schema_generation_shared.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 GroupedMetadata.__instancecheck__ typing.py:1490 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GroupedMetadata._is_callable_members_only typing.py:1425 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 set.add -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__init__ pydantic/_internal/_schema_generation_shared.py:73 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_generate_schema.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _extract_json_schema_info_from_field_info pydantic/_internal/_generate_schema.py:259 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_generate_schema.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 apply_model_validators pydantic/_internal/_generate_schema.py:2308 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NsResolver.push pydantic/_internal/_namespace_utils.py:274 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 resolve_original_schema pydantic/_internal/_generate_schema.py:2478 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 simplify_schema_references pydantic/_internal/_core_utils.py:442 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._copy_schema pydantic/_internal/_core_utils.py:180 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_core_utils.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 get_ref pydantic/_internal/_core_utils.py:107 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 apply_discriminators pydantic/_internal/_discriminated_union.py:37 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 collect_definitions pydantic/_internal/_core_utils.py:114 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_core_utils.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dict.pop -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 validate_core_schema pydantic/_internal/_core_utils.py:607 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_core_schema -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.collect_definitions pydantic/_internal/_generate_schema.py:553 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 create_schema_validator pydantic/plugin/_schema_validator.py:21 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 PPBCPowerProfileDefinition.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 PPBCPowerProfileDefinition.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 get_model_type_hints pydantic/_internal/_typing_extra.py:472 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 try_eval_type pydantic/_internal/_typing_extra.py:538 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _type_convert pydantic/_internal/_typing_extra.py:454 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ForwardRef.__init__ typing.py:664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 compile -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 eval_type_backport pydantic/_internal/_typing_extra.py:593 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _eval_type_backport pydantic/_internal/_typing_extra.py:626 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _eval_type pydantic/_internal/_typing_extra.py:656 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _eval_type typing.py:320 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRef._evaluate typing.py:679 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 from_annotated_attribute pydantic/fields.py:342 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 merge_field_infos pydantic/fields.py:427 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 copy copy.py:66 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _reconstruct copy.py:259 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FieldInfo.__newobj__ copyreg.py:100 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 object.__new__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_finalvar pydantic/_internal/_typing_extra.py:273 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 is_classvar_annotation pydantic/_internal/_typing_extra.py:244 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_typing_extra.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_classvar pydantic/_internal/_typing_extra.py:224 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _warn_on_nested_alias_in_annotation pydantic/_internal/_fields.py:253 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_fields.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_annotated pydantic/_internal/_typing_extra.py:99 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pydantic/_internal/_fields.py -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__instancecheck__ typing.py:993 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__subclasscheck__ typing.py:1154 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDBCOperationMode.get_model_typevars_map pydantic/_internal/_generics.py:237 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 build pydantic/_internal/_decorators.py:426 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_decorators.py -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _collect_bases_data pydantic/_internal/_model_construction.py:277 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ConfigWrapper.for_model pydantic/_internal/_config.py:99 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__init__ pydantic/_internal/_config.py:93 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_config pydantic/_internal/_config.py:282 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_deprecated pydantic/_internal/_config.py:332 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DDBCInstruction.set_deprecated_descriptors pydantic/_internal/_model_construction.py:648 -│ │ │ │ │ │ │ │ │ │ ├─ 0.043 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 __getattr__ pydantic/__init__.py:402 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 import_module importlib/__init__.py:108 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _gcd_import :1038 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.043 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.042 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 pydantic/root_model.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 RootModel.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 validate_core_schema pydantic/_internal/_core_utils.py:607 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 [self] pydantic/_internal/_core_utils.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 validate_core_schema -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 create_schema_validator pydantic/plugin/_schema_validator.py:21 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 get_plugins pydantic/plugin/_loader.py:21 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PathDistribution.entry_points importlib_metadata/__init__.py:516 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 PathDistribution.read_text importlib_metadata/__init__.py:947 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 PosixPath.read_text pathlib.py:1129 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PosixPath.open pathlib.py:1111 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pathlib.py -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.joinpath pathlib.py:845 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath._make_child pathlib.py:615 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _PosixFlavour.join_parsed_parts pathlib.py:94 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EntryPoints._from_text_for importlib_metadata/__init__.py:321 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _from_text importlib_metadata/__init__.py:325 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 RootModel.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_literal pydantic/_internal/_typing_extra.py:77 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_std_types_schema.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InnerSchemaValidator.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InnerSchemaValidator._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 pydantic/types.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 annotated_types/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Lt.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Lt._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Len._get_field dataclasses.py:722 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getattr -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field.__init__ dataclasses.py:286 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Lt._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Unit._hash_add dataclasses.py:842 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/json_schema.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _DefinitionsRemapping.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DefinitionsRemapping._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__str__ inspect.py:3206 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_mock_val_ser.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/plugin/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ValidateStringsHandlerProtocol.__init__ typing_extensions.py:595 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ValidateStringsHandlerProtocol._get_protocol_attrs typing_extensions.py:518 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/_internal/_fields.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_config.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/aliases.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasChoices.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasChoices._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_type dataclasses.py:663 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/config.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_validators.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Annotated.__class_getitem__ typing.py:1695 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _AnnotatedAlias.__init__ typing.py:1621 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _AnnotatedAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 AllowInfNan.dataclass dataclasses.py:1156 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AllowInfNan.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AllowInfNan._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GetPydanticSchema.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GetPydanticSchema._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EncoderProtocol.__init__ typing_extensions.py:595 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EncoderProtocol._get_protocol_attrs typing_extensions.py:518 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/main.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_model_construction.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/fields.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:424 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ControlType.__setattr__ enum.py:470 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 RootModel.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_schema_validator pydantic/plugin/_schema_validator.py:21 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PPBCScheduleInstruction s2python/generated/gen_s2.py:623 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_metadata pydantic/fields.py:536 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PPBCPowerSequence s2python/generated/gen_s2.py:1403 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecastValue s2python/generated/gen_s2.py:976 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 FRBCUsageForecastElement s2python/generated/gen_s2.py:300 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 conint pydantic/types.py:148 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Annotated.__class_getitem__ typing.py:1695 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1621 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 DDBCSystemDescription s2python/generated/gen_s2.py:1493 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 PEBCPowerConstraints s2python/generated/gen_s2.py:1301 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 FRBCFillLevelTargetProfile s2python/generated/gen_s2.py:874 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 OMBCOperationMode s2python/generated/gen_s2.py:1128 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 -│ │ │ │ │ │ │ │ │ ├─ 0.018 s2python/common/duration.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.017 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 s2python/validate_values_mixin.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 pydantic/v1/__init__.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 pydantic/v1/dataclasses.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 pydantic/v1/error_wrappers.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 pydantic/v1/json.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/v1/networks.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/validators.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/datetime_parse.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 RegexFlag.__and__ enum.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/v1/types.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/color.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/v1/class_validators.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/v1/utils.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/errors.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/typing.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/v1/main.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/v1/main.py:122 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 generate_model_signature pydantic/v1/utils.py:236 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/config.py:1 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigDict pydantic/v1/config.py:46 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.__getitem__ typing.py:407 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.Literal typing.py:532 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 -│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 lock.__exit__ -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_class types.py:100 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Duration.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Duration.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.keys -│ │ │ │ │ │ │ │ │ ├─ 0.004 s2python/common/resource_manager_details.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ResourceManagerDetails.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_model_construction.py -│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 define_expected_missing_refs pydantic/_internal/_core_utils.py:128 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_core_utils.py:140 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 invalid_schema pydantic_core/core_schema.py:447 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _dict_not_none pydantic_core/core_schema.py:4108 -│ │ │ │ │ │ │ │ │ ├─ 0.003 s2python/common/power_forecast_value.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ ├─ 0.002 PowerForecastValue.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 create_schema_validator pydantic/plugin/_schema_validator.py:21 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 -│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/revoke_object.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RevokeObject.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_core_schema pydantic/_internal/_core_utils.py:607 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_core_schema -│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 set_cached_generic_type pydantic/_internal/_generics.py:474 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent._early_cache_key pydantic/_internal/_generics.py:515 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _union_orderings_key pydantic/_internal/_generics.py:491 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _union_orderings_key pydantic/_internal/_generics.py:491 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 is_union pydantic/_internal/_typing_extra.py:64 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/number_range.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRange.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 generic_recursion_self_type pydantic/_internal/_generics.py:404 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ContextVar.get -│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/transition.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 Transition.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_args typing.py:1929 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 -│ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast.py:1 -│ │ │ │ │ │ │ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[PowerForecast].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_schema_validator pydantic/plugin/_schema_validator.py:21 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_plugins pydantic/plugin/_loader.py:21 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getenv os.py:772 -│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Environ.get _collections_abc.py:821 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecast.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/timer.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 update_core_metadata pydantic/_internal/_core_metadata.py:41 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/instruction_status_update.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/handshake.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type_backport pydantic/_internal/_typing_extra.py:626 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type pydantic/_internal/_typing_extra.py:656 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef._evaluate typing.py:679 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:329 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/handshake_response.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 HandshakeResponse.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 HandshakeResponse.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_value.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/session_request.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_measurement.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_range.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/reception_status.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 setattr -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_forecast_element.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 -│ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/role.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Role.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 Role.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 is_self pydantic/_internal/_typing_extra.py:131 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_typing_name pydantic/_internal/_typing_extra.py:44 -│ │ │ │ │ │ │ │ │ └─ 0.001 s2python/common/select_control_type.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 -│ │ │ │ │ │ │ └─ 0.002 _ModuleLockManager.__enter__ :169 -│ │ │ │ │ │ │ └─ 0.002 _ModuleLock.acquire :100 -│ │ │ │ │ │ └─ 0.001 pydantic/__init__.py:1 -│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 -│ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 -│ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 -│ │ │ │ │ │ └─ 0.001 _path_isfile :159 -│ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 -│ │ │ │ │ │ └─ 0.001 _path_stat :140 -│ │ │ │ │ │ └─ 0.001 stat -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ │ │ │ └─ 0.001 BufferedReader.read -│ │ │ │ ├─ 0.018 _handle_fromlist :1053 -│ │ │ │ │ └─ 0.018 __getattr__ pydantic/__init__.py:402 -│ │ │ │ │ └─ 0.018 import_module importlib/__init__.py:108 -│ │ │ │ │ └─ 0.018 _gcd_import :1038 -│ │ │ │ │ └─ 0.018 _find_and_load :1022 -│ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 -│ │ │ │ │ └─ 0.018 _load_unlocked :664 -│ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 -│ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 -│ │ │ │ │ └─ 0.018 pydantic/functional_validators.py:1 -│ │ │ │ │ ├─ 0.010 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.010 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.010 pydantic_core/__init__.py:1 -│ │ │ │ │ │ └─ 0.010 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.010 _load_unlocked :664 -│ │ │ │ │ │ ├─ 0.008 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.008 pydantic_core/core_schema.py:1 -│ │ │ │ │ │ │ ├─ 0.006 _TypedDictMeta.__new__ typing_extensions.py:916 -│ │ │ │ │ │ │ │ ├─ 0.002 type.__new__ -│ │ │ │ │ │ │ │ ├─ 0.002 _get_typeddict_qualifiers typing_extensions.py:894 -│ │ │ │ │ │ │ │ │ └─ 0.002 get_origin typing.py:1902 -│ │ │ │ │ │ │ │ │ └─ 0.002 isinstance -│ │ │ │ │ │ │ │ ├─ 0.001 [self] typing_extensions.py -│ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 -│ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 -│ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 -│ │ │ │ │ │ │ │ └─ 0.001 isinstance -│ │ │ │ │ │ │ └─ 0.002 _LiteralSpecialForm.__getitem__ typing.py:407 -│ │ │ │ │ │ │ └─ 0.002 inner typing.py:306 -│ │ │ │ │ │ │ └─ 0.002 _LiteralSpecialForm.Literal typing.py:532 -│ │ │ │ │ │ │ └─ 0.002 _LiteralGenericAlias.__init__ typing.py:1016 -│ │ │ │ │ │ │ └─ 0.002 _collect_type_vars typing_extensions.py:2989 -│ │ │ │ │ │ │ ├─ 0.001 _is_unpacked_typevartuple typing_extensions.py:2976 -│ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 -│ │ │ │ │ │ │ └─ 0.001 _should_collect_from_parameters typing_extensions.py:154 -│ │ │ │ │ │ └─ 0.002 module_from_spec :564 -│ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 -│ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.002 create_dynamic -│ │ │ │ │ ├─ 0.006 _handle_fromlist :1053 -│ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 -│ │ │ │ │ │ └─ 0.006 _find_and_load :1022 -│ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 -│ │ │ │ │ │ └─ 0.006 _load_unlocked :664 -│ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 -│ │ │ │ │ │ │ └─ 0.005 pydantic/_internal/_decorators.py:1 -│ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 -│ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/_internal/_core_utils.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_repr.py:1 -│ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ -│ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_utils.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 -│ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 -│ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 -│ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 -│ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 -│ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_import_utils.py:1 -│ │ │ │ │ │ │ │ │ └─ 0.001 decorating_function functools.py:518 -│ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 -│ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 -│ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 -│ │ │ │ │ │ │ │ └─ 0.001 acquire_lock -│ │ │ │ │ │ │ ├─ 0.001 FieldValidatorDecoratorInfo.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ │ └─ 0.001 FieldValidatorDecoratorInfo._process_class dataclasses.py:881 -│ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 -│ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.dataclass dataclasses.py:1156 -│ │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.wrap dataclasses.py:1174 -│ │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy._process_class dataclasses.py:881 -│ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 -│ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 -│ │ │ │ │ │ └─ 0.001 loads -│ │ │ │ │ └─ 0.002 AfterValidator.wrap dataclasses.py:1174 -│ │ │ │ │ └─ 0.002 AfterValidator._process_class dataclasses.py:881 -│ │ │ │ │ ├─ 0.001 AfterValidator._hash_add dataclasses.py:842 -│ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 -│ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ └─ 0.001 WrapValidator._frozen_get_del_attr dataclasses.py:598 -│ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 -│ │ │ │ │ └─ 0.001 exec -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 inspect_namespace pydantic/_internal/_model_construction.py:357 -│ │ │ │ └─ 0.001 is_valid_privateattr_name pydantic/_internal/_fields.py:375 -│ │ │ │ └─ 0.001 str.startswith -│ │ │ ├─ 0.004 s2python/frbc/frbc_actuator_description.py:1 -│ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ ├─ 0.002 FRBCActuatorDescription.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 -│ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ │ └─ 0.001 FRBCActuatorDescription.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 -│ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 -│ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 -│ │ │ │ │ │ └─ 0.001 str.startswith -│ │ │ │ │ └─ 0.001 FRBCActuatorDescription.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ └─ 0.001 FRBCActuatorDescription.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ └─ 0.001 from_annotated_attribute pydantic/fields.py:342 -│ │ │ │ │ └─ 0.001 is_finalvar pydantic/_internal/_typing_extra.py:273 -│ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 -│ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 -│ │ │ ├─ 0.002 s2python/frbc/frbc_timer_status.py:1 -│ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ └─ 0.001 FRBCTimerStatus.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ └─ 0.001 validate_core_schema pydantic/_internal/_core_utils.py:607 -│ │ │ │ │ └─ 0.001 validate_core_schema -│ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 S2MessageComponent[FRBCTimerStatus].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 -│ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 -│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ ├─ 0.002 s2python/frbc/frbc_storage_status.py:1 -│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ └─ 0.001 inspect_namespace pydantic/_internal/_model_construction.py:357 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCStorageStatus.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 -│ │ │ ├─ 0.002 s2python/frbc/frbc_actuator_status.py:1 -│ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ ├─ 0.001 FRBCActuatorStatus.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ │ └─ 0.001 FRBCActuatorStatus.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 -│ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 -│ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 -│ │ │ │ │ └─ 0.001 _eval_type_backport pydantic/_internal/_typing_extra.py:626 -│ │ │ │ │ └─ 0.001 _eval_type pydantic/_internal/_typing_extra.py:656 -│ │ │ │ │ └─ 0.001 _eval_type typing.py:320 -│ │ │ │ │ └─ 0.001 ForwardRef._evaluate typing.py:679 -│ │ │ │ └─ 0.001 FRBCActuatorStatus.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ └─ 0.001 GenerateSchema.collect_definitions pydantic/_internal/_generate_schema.py:553 -│ │ │ │ └─ 0.001 definition_reference_schema pydantic_core/core_schema.py:3851 -│ │ │ ├─ 0.002 s2python/frbc/frbc_usage_forecast_element.py:1 -│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ └─ 0.001 S2MessageComponent[FRBCUsageForecastElement].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 -│ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 -│ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 -│ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCUsageForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 FRBCUsageForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode_element.py:1 -│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ └─ 0.001 S2MessageComponent[FRBCOperationModeElement].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ └─ 0.001 S2MessageComponent[FRBCOperationModeElement].__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ └─ 0.001 check_decorator_fields_exist pydantic/_internal/_generate_schema.py:189 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCOperationModeElement.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 FRBCOperationModeElement.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ └─ 0.001 _extract_json_schema_info_from_field_info pydantic/_internal/_generate_schema.py:259 -│ │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode.py:1 -│ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ └─ 0.001 NsResolver.__init__ pydantic/_internal/_namespace_utils.py:227 -│ │ │ │ │ └─ 0.001 :1 -│ │ │ │ │ └─ 0.001 tuple.__new__ -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCOperationMode.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 FRBCOperationMode.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 -│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 -│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ │ │ └─ 0.001 _GenericAlias.__eq__ typing.py:1031 -│ │ │ │ └─ 0.001 isinstance -│ │ │ ├─ 0.002 s2python/frbc/frbc_fill_level_target_profile.py:1 -│ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 -│ │ │ │ │ └─ 0.001 GenerateSchema._apply_single_annotation pydantic/_internal/_generate_schema.py:2062 -│ │ │ │ │ └─ 0.001 apply_known_metadata pydantic/_internal/_known_annotated_metadata.py:167 -│ │ │ │ │ └─ 0.001 collect_known_metadata pydantic/_internal/_known_annotated_metadata.py:331 -│ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 -│ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 -│ │ │ │ │ └─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 -│ │ │ │ │ └─ 0.001 all -│ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 -│ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 S2MessageComponent[FRBCFillLevelTargetProfile].complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 S2MessageComponent[FRBCFillLevelTargetProfile].__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ ├─ 0.002 s2python/frbc/frbc_system_description.py:1 -│ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.002 FRBCSystemDescription.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ ├─ 0.001 FRBCSystemDescription.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 -│ │ │ │ └─ 0.001 collect_definitions pydantic/_internal/_core_utils.py:114 -│ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 -│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ ├─ 0.001 s2python/frbc/frbc_instruction.py:1 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCInstruction.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ └─ 0.001 FRBCInstruction.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 -│ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 -│ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 -│ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 -│ │ │ │ └─ 0.001 compile -│ │ │ ├─ 0.001 s2python/frbc/frbc_leakage_behaviour.py:1 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCLeakageBehaviour.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 FRBCLeakageBehaviour.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 -│ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 -│ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 -│ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 -│ │ │ ├─ 0.001 s2python/frbc/frbc_storage_description.py:1 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCStorageDescription.set_model_fields pydantic/_internal/_model_construction.py:522 -│ │ │ │ └─ 0.001 FRBCStorageDescription.collect_model_fields pydantic/_internal/_fields.py:74 -│ │ │ │ └─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 -│ │ │ ├─ 0.001 s2python/frbc/frbc_leakage_behaviour_element.py:1 -│ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ │ └─ 0.001 FRBCLeakageBehaviourElement.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 -│ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 -│ │ │ │ └─ 0.001 collect_definitions pydantic/_internal/_core_utils.py:114 -│ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 -│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 -│ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 -│ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 -│ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 -│ │ │ └─ 0.001 s2python/frbc/frbc_usage_forecast.py:1 -│ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 -│ │ │ └─ 0.001 FRBCUsageForecast.complete_model_class pydantic/_internal/_model_construction.py:555 -│ │ │ └─ 0.001 FRBCUsageForecast.__get_pydantic_core_schema__ pydantic/main.py:680 -│ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 -│ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 -│ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 -│ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 -│ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 -│ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 -│ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 -│ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 -│ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 -│ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 -│ │ └─ 0.001 SourceFileLoader.get_code :950 -│ │ └─ 0.001 SourceFileLoader.get_data :1070 -│ │ └─ 0.001 open_code -│ └─ 0.001 cb :198 -│ └─ 0.001 acquire_lock -└─ 0.003 [self] test_frbc_device.py - -To view this report with different options, run: - pyinstrument --load-prev 2025-06-02T09-18-51 [options] - diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 2583815..88411dd 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -671,12 +671,12 @@ def test_planning_service_impl_with_ev_device(): device_plans = cluster_plan.get_plan_data().get_device_plans() energy_profile = cluster_plan.get_joule_profile() - # plot_planning_results( - # timestep_duration=timedelta(seconds=300), - # nr_of_timesteps=288, - # predicted_energy_elements=energy_profile.get_elements(), - # target_energy_elements=target_profile_elements, - # ) + plot_planning_results( + timestep_duration=timedelta(seconds=300), + nr_of_timesteps=288, + predicted_energy_elements=energy_profile.get_elements(), + target_energy_elements=target_profile_elements, + ) # Get only the non-None plans device_plans = [plan for plan in device_plans if plan is not None] From f36a85f35216fde5825a3295068470557d5857d9 Mon Sep 17 00:00:00 2001 From: Felix Claessen <30658763+Flix6x@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:19:45 +0200 Subject: [PATCH 31/33] Dev/various planner code suggestions (#11) * refactor: collect parameters Signed-off-by: F.N. Claessen * refactor: get rid of UUID actuator_id (prefer str instead) Signed-off-by: F.N. Claessen * delete: remove empty results file Signed-off-by: F.N. Claessen * docs: add instructions for profiling Signed-off-by: F.N. Claessen * refactor: get rid of UUID operation_mode_is (prefer str instead) Signed-off-by: F.N. Claessen --------- Signed-off-by: F.N. Claessen --- README.md | 4 + .../device_planner/frbc/frbc_state.py | 54 +++---- .../frbc/s2_frbc_actuator_configuration.py | 7 +- .../frbc/s2_frbc_device_state_wrapper.py | 43 +++--- .../frbc/s2_frbc_instruction_profile.py | 5 +- .../device_planner/frbc/s2_frbc_plan.py | 5 +- .../tests/profiling_results.txt | 0 .../tests/test_frbc_device.py | 138 ++++++++++-------- 8 files changed, 126 insertions(+), 130 deletions(-) delete mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results.txt diff --git a/README.md b/README.md index 1f9652d..4b31527 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,7 @@ or: Try it: pre-commit run --all-files --show-diff-on-failure + +For profiling, use: + + pyinstrument -o profiling_results.html test_frbc_device.py diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py index 3648aea..39e6209 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -1,5 +1,4 @@ from datetime import datetime -import uuid from s2python.frbc import ( FRBCSystemDescription, ) @@ -93,22 +92,14 @@ def __init__( actuator_id, actuator_configuration, ) in actuator_configurations.items(): - if isinstance(actuator_id, str): - actuator_id = uuid.UUID(actuator_id) previous_operation_mode_id = ( previous_state.get_actuator_configurations()[ actuator_id ].get_operation_mode_id() ) - if isinstance(previous_operation_mode_id, str): - previous_operation_mode_id = uuid.UUID( - previous_operation_mode_id - ) new_operation_mode_id = ( actuator_configuration.get_operation_mode_id() ) - if isinstance(new_operation_mode_id, str): - new_operation_mode_id = uuid.UUID(new_operation_mode_id) if previous_operation_mode_id != new_operation_mode_id: transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( self.timestep, @@ -116,13 +107,17 @@ def __init__( previous_operation_mode_id, new_operation_mode_id, ) + last_timer_id = None + new_finished_at = None for timer_id in transition.start_timers: duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( - self.timestep, actuator_id, timer_id + self.timestep, actuator_id, str(timer_id) ) new_finished_at = self.timestep.get_start_date() + duration - key = FrbcState.timer_key(actuator_id, timer_id) - self.timer_elapse_map[key] = new_finished_at + last_timer_id = timer_id + if last_timer_id is not None: + key = FrbcState.timer_key(actuator_id, str(last_timer_id)) + self.timer_elapse_map[key] = new_finished_at else: self.timer_elapse_map = ( self.get_initial_timer_elapse_map_for_system_description( @@ -165,9 +160,8 @@ def __init__( self.actuator_configurations = actuator_configurations or {} for k in list(self.get_actuator_configurations().keys()): if isinstance(k, str): - # Convert strings to UUIDs - self.actuator_configurations[uuid.UUID(k)] = ( - self.actuator_configurations.pop(k) + self.actuator_configurations[k] = self.actuator_configurations.pop( + k ) self.timestep.add_state(self) @@ -198,11 +192,11 @@ def __init__( actuators = self.system_description.actuators for actuator in actuators: if actuator.id == a.actuator_id: - self.actuator_configurations[a.actuator_id] = ( - S2ActuatorConfiguration( # TODO here was the problem with str and uuid - actuator_status.active_operation_mode_id, - actuator_status.operation_mode_factor, - ) + self.actuator_configurations[ + str(a.actuator_id) + ] = S2ActuatorConfiguration( + str(actuator_status.active_operation_mode_id), + actuator_status.operation_mode_factor, ) @staticmethod @@ -212,7 +206,7 @@ def get_initial_timer_elapse_map_for_system_description( timer_elapse_map = {} for actuator in system_description.actuators: for timer in actuator.timers: - key = FrbcState.timer_key(actuator.id, timer.id) + key = FrbcState.timer_key(str(actuator.id), str(timer.id)) timer_elapse_map[key] = datetime.min # arbitrary day in the past return timer_elapse_map @@ -273,16 +267,12 @@ def update_timers( ): self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() for actuator_id, actuator_configuration in actuator_configurations.items(): - if isinstance(actuator_id, str): - actuator_id = uuid.UUID(actuator_id) previous_operation_mode_id = ( previous_state.get_actuator_configurations()[ actuator_id ].get_operation_mode_id() ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() - if isinstance(new_operation_mode_id, str): - new_operation_mode_id = uuid.UUID(new_operation_mode_id) if previous_operation_mode_id != new_operation_mode_id: transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( self.timestep, @@ -294,10 +284,10 @@ def update_timers( continue for timer_id in transition.start_timers: duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( - self.timestep, actuator_id, timer_id + self.timestep, actuator_id, str(timer_id) ) new_finished_at = self.timestep.get_start_date() + duration - key = FrbcState.timer_key(actuator_id, timer_id) + key = FrbcState.timer_key(actuator_id, str(timer_id)) self.timer_elapse_map[key] = new_finished_at else: self.timer_elapse_map = ( @@ -368,8 +358,6 @@ def try_create_next_state( actuator_id, actuator_configuration, ) in actuator_configs_for_target_timestep.items(): - if isinstance(actuator_id, str): - actuator_id = uuid.UUID(actuator_id) # print all the keys in the previous_state.get_actuator_configurations() # print(previous_state.get_actuator_configurations().keys()) @@ -379,18 +367,12 @@ def try_create_next_state( actuator_id ].get_operation_mode_id() ) - if isinstance(previous_operation_mode_id, str): - previous_operation_mode_id = uuid.UUID( - previous_operation_mode_id - ) except KeyError: raise KeyError( f"UUID {actuator_id} not found in actuator configurations" ) new_operation_mode_id = actuator_configuration.get_operation_mode_id() - if isinstance(new_operation_mode_id, str): - new_operation_mode_id = uuid.UUID(new_operation_mode_id) if previous_operation_mode_id != new_operation_mode_id: transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( target_timestep, @@ -403,7 +385,7 @@ def try_create_next_state( for timer_id in transition.blocking_timers: timer_is_finished_at = ( previous_state.get_timer_elapse_map().get( - FrbcState.timer_key(actuator_id, timer_id) + FrbcState.timer_key(actuator_id, str(timer_id)) ) ) if ( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py index cc07baa..ed64373 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py @@ -1,15 +1,14 @@ -import uuid from typing import Dict, Any # TODO: Should this just be an actuator description class S2ActuatorConfiguration: - def __init__(self, operation_mode_id: uuid.UUID, factor): + def __init__(self, operation_mode_id: str, factor): self.operation_mode_id = operation_mode_id self.factor = factor - def get_operation_mode_id(self) -> uuid.UUID: + def get_operation_mode_id(self) -> str: return self.operation_mode_id def get_factor(self) -> float: @@ -20,7 +19,7 @@ def to_dict(self): @staticmethod def from_dict(data: Dict[str, Any]) -> "S2ActuatorConfiguration": - return S2ActuatorConfiguration(data["operationModeId"], data["factor"]) + return S2ActuatorConfiguration(str(data["operationModeId"]), data["factor"]) def __str__(self): return f"S2ActuatorConfiguration [operationModeId={self.operation_mode_id}, factor={self.factor}]" diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index 0c73619..bf6710e 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -1,6 +1,5 @@ from datetime import datetime, timedelta from typing import Dict, List, Optional, Any -import uuid from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) @@ -29,8 +28,12 @@ class S2FrbcDeviceStateWrapper: def __init__(self, device_state): self.device_state: S2FrbcDeviceState = device_state - self.nr_of_buckets: int = self.device_state.get_computational_parameters().get_nr_of_buckets() - self.nr_of_stratification_layers: int = self.device_state.get_computational_parameters().get_stratification_layers() + self.nr_of_buckets: int = ( + self.device_state.get_computational_parameters().get_nr_of_buckets() + ) + self.nr_of_stratification_layers: int = ( + self.device_state.get_computational_parameters().get_stratification_layers() + ) self.actuator_operation_mode_map_per_timestep: Dict[ datetime, Dict[str, List[str]] ] = {} @@ -95,7 +98,7 @@ def create_actuator_operation_mode_map( return actuator_operation_mode_map def get_operation_mode( - self, target_timestep, actuator_id: uuid.UUID, operation_mode_id: str + self, target_timestep, actuator_id: str, operation_mode_id: str ): from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( FrbcOperationModeWrapper, @@ -119,7 +122,7 @@ def get_operation_mode( def operation_mode_uses_factor( self, target_timestep: FrbcTimestep, - actuator_id: uuid.UUID, + actuator_id: str, operation_mode_id: str, ) -> bool: key = f"{actuator_id}-{operation_mode_id}" @@ -202,9 +205,9 @@ def increase( @staticmethod def get_transition( target_timestep, - actuator_id: uuid.UUID, - from_operation_mode_id: uuid.UUID, - to_operation_mode_id: uuid.UUID, + actuator_id: str, + from_operation_mode_id: str, + to_operation_mode_id: str, ) -> Optional[Transition]: actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( @@ -212,21 +215,11 @@ def get_transition( ) if actuator_description is None: return None - # Make sure from_operation_mode_id and to_operation_mode_id are UUIDs - if isinstance(from_operation_mode_id, str): - from_operation_mode_id = uuid.UUID(from_operation_mode_id) - if isinstance(to_operation_mode_id, str): - to_operation_mode_id = uuid.UUID(to_operation_mode_id) for transition in actuator_description.transitions: - # Make sure transition.from_ and transition.to are UUIDs - if isinstance(transition.from_, str): - transition.from_ = uuid.UUID(transition.from_) - if isinstance(transition.to, str): - transition.to = uuid.UUID(transition.to) if ( - transition.from_ == from_operation_mode_id - and transition.to == to_operation_mode_id + str(transition.from_) == from_operation_mode_id + and str(transition.to) == to_operation_mode_id ): return transition else: @@ -331,7 +324,7 @@ def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: @staticmethod def get_timer_duration_milliseconds( - target_timestep: FrbcTimestep, actuator_id: uuid.UUID, timer_id: uuid.UUID + target_timestep: FrbcTimestep, actuator_id: str, timer_id: str ) -> int: actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( target_timestep, actuator_id @@ -341,7 +334,7 @@ def get_timer_duration_milliseconds( f"Actuator description not found for actuator {actuator_id}" ) timer = next( - (t for t in actuator_description.timers if t.id == timer_id), + (t for t in actuator_description.timers if str(t.id) == timer_id), None, ) # Return the duration in milliseconds directly @@ -349,7 +342,7 @@ def get_timer_duration_milliseconds( @staticmethod def get_timer_duration( - target_timestep: FrbcTimestep, actuator_id: uuid.UUID, timer_id: uuid.UUID + target_timestep: FrbcTimestep, actuator_id: str, timer_id: str ) -> timedelta: return timedelta( milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( @@ -359,13 +352,13 @@ def get_timer_duration( @staticmethod def get_actuator_description( - target_timestep: FrbcTimestep, actuator_id: uuid.UUID + target_timestep: FrbcTimestep, actuator_id: str ) -> Optional[FRBCActuatorDescription]: return next( ( ad for ad in target_timestep.get_system_description().actuators - if ad.id == actuator_id + if str(ad.id) == actuator_id ), None, ) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py index f00107e..7e99542 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py @@ -1,4 +1,3 @@ -import uuid from typing import Dict, List from datetime import datetime, timedelta from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( @@ -11,7 +10,7 @@ class Element: def __init__( self, idle: bool, - actuator_configuration: Dict[uuid.UUID, S2ActuatorConfiguration], + actuator_configuration: Dict[str, S2ActuatorConfiguration], ): self.idle = idle self.actuator_configuration = actuator_configuration @@ -21,7 +20,7 @@ def is_idle(self) -> bool: def get_actuator_configuration( self, - ) -> Dict[uuid.UUID, S2ActuatorConfiguration]: + ) -> Dict[str, S2ActuatorConfiguration]: return self.actuator_configuration def __init__( diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py index 12fc89d..8ce7a04 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py @@ -1,5 +1,4 @@ from typing import List, Dict -import uuid from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( S2ActuatorConfiguration, ) @@ -11,7 +10,7 @@ def __init__( idle: bool, energy, fill_level, - operation_mode_id: List[Dict[uuid.UUID, S2ActuatorConfiguration]], + operation_mode_id: List[Dict[str, S2ActuatorConfiguration]], ): self.idle = idle self.energy = energy @@ -27,5 +26,5 @@ def get_energy(self): def get_fill_level(self): return self.fill_level - def get_operation_mode_id(self) -> List[Dict[uuid.UUID, S2ActuatorConfiguration]]: + def get_operation_mode_id(self) -> List[Dict[str, S2ActuatorConfiguration]]: return self.operation_mode_id diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.txt b/flexmeasures_s2/profile_steering/tests/profiling_results.txt deleted file mode 100644 index e69de29..0000000 diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index 88411dd..a509a94 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -1,10 +1,8 @@ from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile -import pytest from datetime import datetime, timedelta, timezone import uuid import logging import time -import functools from s2python.frbc.frbc_actuator_description import FRBCActuatorDescription from s2python.frbc.frbc_fill_level_target_profile_element import ( FRBCFillLevelTargetProfileElement, @@ -12,9 +10,6 @@ from s2python.frbc.frbc_leakage_behaviour_element import FRBCLeakageBehaviourElement from s2python.frbc.frbc_operation_mode import FRBCOperationMode from s2python.frbc.frbc_usage_forecast_element import FRBCUsageForecastElement -from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( - S2FrbcDevicePlanner, -) from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( S2FrbcDeviceState, ) @@ -33,25 +28,32 @@ from s2python.common import PowerValue from s2python.common import Commodity -from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( - DevicePlanner, -) -from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile from flexmeasures_s2.profile_steering.planning_service_impl import ( PlanningServiceImpl, PlanningServiceConfig, ClusterState, ClusterTarget, ) -import matplotlib.pyplot as plt import matplotlib.dates as mdates -import matplotlib.patches as mpatches +import matplotlib.pyplot as plt # Global variables to store IDs for debugging # make a list of tuples with the ids and the names ids = [] -import matplotlib.pyplot as plt + +D = 10 # number of devices +B = 20 # number of buckets +S = 10 # number of stratification layers +T = 160 # number of time steps +TIMESTEP_DURATION = 300 # duration of a time step in seconds + +""" +# Ideas for speeding up + +- Parallelize device planning +- Precompute UUIDs +""" def create_ev_device_state( @@ -76,13 +78,15 @@ def create_ev_device_state( start_of_recharge2: datetime, ) -> S2FrbcDeviceState: # Create system description - recharge_system_description1, charge_actuator_status1, storage_status1 = ( - create_recharge_system_description( - start_of_recharge=start_of_recharge1, - charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, - charging_power_kw=charging_power_kw_night, - soc_percentage_before_charging=soc_percentage_before_charging1, - ) + ( + recharge_system_description1, + charge_actuator_status1, + storage_status1, + ) = create_recharge_system_description( + start_of_recharge=start_of_recharge1, + charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, + charging_power_kw=charging_power_kw_night, + soc_percentage_before_charging=soc_percentage_before_charging1, ) # Create leakage behaviour @@ -101,22 +105,26 @@ def create_ev_device_state( soc_percentage_before_charging1, ) - drive_system_description1, off_actuator_status1, storage_status1 = ( - create_driving_system_description( - start_of_drive1, soc_percentage_before_driving1 - ) + ( + drive_system_description1, + off_actuator_status1, + storage_status1, + ) = create_driving_system_description( + start_of_drive1, soc_percentage_before_driving1 ) drive_usage_forecast1 = create_driving_usage_forecast( start_of_drive1, drive_duration1, drive_consume_soc_per_second1 ) - recharge_system_description2, charge_actuator_status2, storage_status2 = ( - create_recharge_system_description( - start_of_recharge2, - charge_power_soc_percentage_per_second_day, - charging_power_kw_day, - soc_percentage_before_charging2, - ) + ( + recharge_system_description2, + charge_actuator_status2, + storage_status2, + ) = create_recharge_system_description( + start_of_recharge2, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging2, ) recharge_leakage2 = create_recharge_leakage_behaviour(start_of_recharge2) recharge_usage_forecast2 = create_recharge_usage_forecast( @@ -133,15 +141,17 @@ def create_ev_device_state( done_start = start_of_recharge2 + recharge_duration2 done_duration = timedelta(hours=4, minutes=10) # 4 hours & 10 minutes done_leakage = create_recharge_leakage_behaviour(done_start) - done_system_description, done_actuator_status, done_storage_status = create_driving_system_description( - done_start, final_fill_level_target2 - ) + ( + done_system_description, + done_actuator_status, + done_storage_status, + ) = create_driving_system_description(done_start, final_fill_level_target2) done_usage_forecast = create_recharge_usage_forecast(done_start, done_duration) device_state = S2FrbcDeviceState( device_id=device_id, device_name=device_id, - connection_id=device_id+"_cid1", + connection_id=device_id + "_cid1", priority_class=1, timestamp=omloop_starts_at, energy_in_current_timestep=PowerValue( @@ -166,7 +176,7 @@ def create_ev_device_state( recharge_fill_level_target1, recharge_fill_level_target2, ], - computational_parameters=S2FrbcDeviceState.ComputationalParameters(100, 20), + computational_parameters=S2FrbcDeviceState.ComputationalParameters(B, S), actuator_statuses=[ off_actuator_status1, charge_actuator_status1, @@ -177,6 +187,7 @@ def create_ev_device_state( ) return device_state + @staticmethod def create_recharge_system_description( start_of_recharge, @@ -506,7 +517,7 @@ def plot_planning_results( # Adjust layout plt.tight_layout() - plt.show() + plt.savefig(f"my plot - D = {D} - B = {B} - S = {S} - T = {T}") def create_device_state( @@ -561,7 +572,7 @@ def create_device_state( return device_state -def get_target_profile_elements(): +def get_target_profile_elements(number_of_elements: int): """Create target profile elements with the same pattern as the Java code.""" target_elements = [] # First 38 elements of 0 @@ -574,41 +585,41 @@ def get_target_profile_elements(): target_elements.extend([8400000] * 28) # Last 115 elements of 176000000 target_elements.extend([176000000] * 115) - return target_elements + return target_elements[:number_of_elements] def test_planning_service_impl_with_ev_device(): """Test the PlanningServiceImpl with an EV device.""" print("Test the PlanningServiceImpl with an EV device.") # Create 10 device states - numberOfDevices = 10 + numberOfDevices = D # Create profile metadata and target profile target_metadata = ProfileMetadata( profile_start=datetime(1970, 1, 1, tzinfo=timezone.utc), - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, + timestep_duration=timedelta(seconds=TIMESTEP_DURATION), + nr_of_timesteps=T, ) plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) - target_profile_elements = get_target_profile_elements() - + target_profile_elements = get_target_profile_elements(T) + device_states = [ create_device_state( f"battery{i+1}", datetime.fromtimestamp(3600), timezone(timedelta(hours=1)) ) for i in range(numberOfDevices) ] - + # Create Dictionary of device states device_states_dict = { device_state.device_id: device_state for device_state in device_states } - + # Create congestion points mapping congestion_points_by_connection_id = { device_id: "" for device_id in device_states_dict.keys() } - + # Create a target profile global_target_profile = TargetProfile( profile_start=target_metadata.get_profile_start(), @@ -616,14 +627,20 @@ def test_planning_service_impl_with_ev_device(): elements=target_profile_elements, ) # Create a cluster state using the list of device states - cluster_state = ClusterState(datetime.now(), device_states_dict, congestion_points_by_connection_id) - + cluster_state = ClusterState( + datetime.now(), device_states_dict, congestion_points_by_connection_id + ) + # Create an empty map for congestion point targets congestion_point_targets = {} # Create a cluster target cluster_target = ClusterTarget( - datetime.now(), None, None, global_target_profile=global_target_profile, congestion_point_targets=congestion_point_targets + datetime.now(), + None, + None, + global_target_profile=global_target_profile, + congestion_point_targets=congestion_point_targets, ) config = PlanningServiceConfig( @@ -638,9 +655,13 @@ def test_planning_service_impl_with_ev_device(): service = PlanningServiceImpl(config) # Create cluster target - + cluster_target = ClusterTarget( - datetime.now(), None, None, global_target_profile=global_target_profile, congestion_point_targets=congestion_point_targets + datetime.now(), + None, + None, + global_target_profile=global_target_profile, + congestion_point_targets=congestion_point_targets, ) # Set due by date for planning plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) @@ -649,7 +670,7 @@ def test_planning_service_impl_with_ev_device(): cluster_plan = service.plan( state=cluster_state, target=cluster_target, - planning_window=300 * 288, # Full planning window in seconds + planning_window=TIMESTEP_DURATION * T, # Full planning window in seconds reason="Testing EV planning", plan_due_by_date=plan_due_by_date, optimize_for_target=True, @@ -660,7 +681,7 @@ def test_planning_service_impl_with_ev_device(): # Log information print(f"Plan generated in {execution_time:.2f} seconds") - + # Assert assert cluster_plan is not None print("Got cluster plan") @@ -672,11 +693,11 @@ def test_planning_service_impl_with_ev_device(): energy_profile = cluster_plan.get_joule_profile() plot_planning_results( - timestep_duration=timedelta(seconds=300), - nr_of_timesteps=288, - predicted_energy_elements=energy_profile.get_elements(), - target_energy_elements=target_profile_elements, - ) + timestep_duration=timedelta(seconds=TIMESTEP_DURATION), + nr_of_timesteps=T, + predicted_energy_elements=energy_profile.get_elements(), + target_energy_elements=target_profile_elements, + ) # Get only the non-None plans device_plans = [plan for plan in device_plans if plan is not None] @@ -689,7 +710,6 @@ def test_planning_service_impl_with_ev_device(): # Basic assertion - the energy profile should have the expected number of elements assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() - # Main function if __name__ == "__main__": From f8739c347b187d424d23e02c58d206d04616d24c Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 4 Jun 2025 00:20:02 +0200 Subject: [PATCH 32/33] Removed simple getters that get lost --- .../profile_steering/cluster_plan.py | 241 +++++++----------- .../profile_steering/cluster_target.py | 12 +- .../common/abstract_profile.py | 8 +- .../profile_steering/common/joule_profile.py | 66 ++--- .../common/joule_range_profile.py | 184 ++++++------- .../common/profile_metadata.py | 34 +-- .../profile_steering/common/soc_profile.py | 28 +- .../profile_steering/common/target_profile.py | 64 ++--- .../congestion_point_planner.py | 8 +- .../device_planner/frbc/frbc_timestep.py | 8 +- .../profile_steering/root_planner.py | 39 +-- ...t - D = 10 - B = 20 - S = 10 - T = 160.png | Bin 0 -> 47770 bytes .../tests/profiling_results.html | 33 +++ .../tests/test_frbc_device.py | 10 +- 14 files changed, 300 insertions(+), 435 deletions(-) create mode 100644 flexmeasures_s2/profile_steering/tests/my plot - D = 10 - B = 20 - S = 10 - T = 160.png create mode 100644 flexmeasures_s2/profile_steering/tests/profiling_results.html diff --git a/flexmeasures_s2/profile_steering/cluster_plan.py b/flexmeasures_s2/profile_steering/cluster_plan.py index 36a5ac8..61a58cb 100644 --- a/flexmeasures_s2/profile_steering/cluster_plan.py +++ b/flexmeasures_s2/profile_steering/cluster_plan.py @@ -4,7 +4,7 @@ # Common data types from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile -from flexmeasures_s2.profile_steering.common.joule_range_profile import JouleRangeProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata # Import from common data structures to avoid circular imports from flexmeasures_s2.profile_steering.common_data_structures import ( @@ -61,9 +61,7 @@ def get_cp_consumption_max(self) -> float: def get_cp_production_max(self) -> float: return self._cp_production_max - def add_der_plan( - self, der_name: str, value: JouleProfile - ) -> "ClusterPlanData.CpData": + def add_der_plan(self, der_name: str, value: JouleProfile) -> "ClusterPlanData.CpData": """Add a device energy resource plan to this congestion point. Args: @@ -106,7 +104,7 @@ def add_der_plan( ) @classmethod - def empty(cls, cp_id: str, profile_metadata: Any) -> "ClusterPlanData.CpData": + def empty(cls, cp_id: str, profile_metadata: ProfileMetadata) -> "ClusterPlanData.CpData": """Create an empty CpData instance. Args: @@ -116,7 +114,8 @@ def empty(cls, cp_id: str, profile_metadata: Any) -> "ClusterPlanData.CpData": Returns: An empty CpData instance """ - timesteps = profile_metadata.get_nr_of_timesteps() + timesteps = profile_metadata.nr_of_timesteps + return cls( cp_id, [0.0] * timesteps, @@ -130,7 +129,7 @@ def empty(cls, cp_id: str, profile_metadata: Any) -> "ClusterPlanData.CpData": def __init__( self, device_plans: List[DevicePlan] = None, - profile_metadata: Any = None, + profile_metadata: ProfileMetadata = None, _id: str = None, reason: str = None, target: Any = None, @@ -158,7 +157,7 @@ def __init__( def get_device_plans(self) -> List[DevicePlan]: return self._device_plans - def get_profile_metadata(self) -> Any: + def get_profile_metadata(self) -> ProfileMetadata: return self._profile_metadata def get_id(self) -> str: @@ -203,7 +202,7 @@ def is_compatible(self, other: Any) -> bool: if self._profile_metadata is None: return False - return self._profile_metadata.is_compatible(other.get_profile_metadata()) + return self._profile_metadata.is_compatible(other.metadata) def subprofile(self, new_start_date: datetime) -> "ClusterPlanData": """Create a subprofile starting at the specified date. @@ -217,10 +216,8 @@ def subprofile(self, new_start_date: datetime) -> "ClusterPlanData": # Create a copy of this instance with adjusted device plans new_device_plans = [] for device_plan in self._device_plans: - new_profile = device_plan.get_profile().subprofile(new_start_date) - new_device_plans.append( - DevicePlan(device_plan.get_device_id(), new_profile) - ) + new_profile = device_plan._profile.subprofile(new_start_date) + new_device_plans.append(DevicePlan(device_plan._device_id, new_profile)) # Create new profile metadata with adjusted start date new_profile_metadata = self._profile_metadata.subprofile(new_start_date) @@ -253,17 +250,11 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlanData": # Create a copy of this instance with adjusted device plans new_device_plans = [] for device_plan in self._device_plans: - new_profile = device_plan.get_profile().adjust_nr_of_elements( - nr_of_elements - ) - new_device_plans.append( - DevicePlan(device_plan.get_device_id(), new_profile) - ) + new_profile = device_plan._profile.adjust_nr_of_elements(nr_of_elements) + new_device_plans.append(DevicePlan(device_plan._device_id, new_profile)) # Create new profile metadata with adjusted number of elements - new_profile_metadata = self._profile_metadata.adjust_nr_of_elements( - nr_of_elements - ) + new_profile_metadata = self._profile_metadata.adjust_nr_of_elements(nr_of_elements) return ClusterPlanData( device_plans=new_device_plans, @@ -272,9 +263,7 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlanData": reason=self._reason, target=self._target, active_target=self._active_target, - current_plan=( - self._current_plan[:nr_of_elements] if self._current_plan else None - ), + current_plan=(self._current_plan[:nr_of_elements] if self._current_plan else None), start=self._start, step=self._step, global_deviation_score=self._global_deviation_score, @@ -286,8 +275,8 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlanData": def from_cluster_plan( cls, cluster_plan: "ClusterPlan", - active_target: ClusterTarget = None, - active_plan: JouleProfile = None, + active_target: ClusterTarget, + active_plan: JouleProfile, ) -> "ClusterPlanData": """Create a ClusterPlanData instance from a ClusterPlan. @@ -302,15 +291,13 @@ def from_cluster_plan( congestion_points = {} # Get the device plans from the cluster plan - cluster_plan_data = cluster_plan.get_plan_data() + cluster_plan_data = cluster_plan._plan_data if cluster_plan_data is None: return None # type: ignore # Process each device plan - for device_plan in cluster_plan_data.get_device_plans(): - cp_id = cluster_plan.get_state().get_congestion_point( - device_plan.get_connection_id() - ) + for device_plan in cluster_plan_data._device_plans: + cp_id = cluster_plan._state.get_congestion_point(device_plan._device_id) if cp_id is None: # The interface needs all devices to function properly. So for devices without congestion point, set a # dummy congestion point so that those device plans go through. @@ -318,72 +305,50 @@ def from_cluster_plan( if cp_id not in congestion_points: congestion_points[cp_id] = ClusterPlanData.CpData.empty( - cp_id, cluster_plan.get_plan_data().get_profile_metadata() + cp_id, cluster_plan._plan_data._profile_metadata ) congestion_points[cp_id] = congestion_points[cp_id].add_der_plan( - device_plan.get_device_id(), device_plan.get_profile() + device_plan._device_id, device_plan._profile ) # Create the current plan if active_plan is None: # Extract the plan from the cluster plan's JouleProfile joule_profile = cluster_plan.get_joule_profile() - current_plan = [ - element if element is not None else 0.0 - for element in joule_profile.get_elements() - ] + current_plan = [element if element is not None else 0.0 for element in joule_profile.elements] else: # Use the active plan, adjusting it to the profile metadata - profile_start = ( - cluster_plan.get_plan_data().get_profile_metadata().get_profile_start() - ) - nr_of_timesteps = ( - cluster_plan.get_plan_data() - .get_profile_metadata() - .get_nr_of_timesteps() - ) + profile_start = cluster_plan._plan_data._profile_metadata.profile_start + nr_of_timesteps = cluster_plan._plan_data._profile_metadata.nr_of_timesteps subprofile = active_plan.subprofile(profile_start) adjusted_profile = subprofile.adjust_nr_of_elements(nr_of_timesteps) - current_plan = [ - element if element is not None else 0.0 - for element in adjusted_profile.get_elements() - ] + current_plan = [element if element is not None else 0.0 for element in adjusted_profile.elements] # Get the profile metadata - profile_metadata = cluster_plan.get_plan_data().get_profile_metadata() + profile_metadata = cluster_plan._plan_data._profile_metadata # Set up the active target - actual_active_target = ( - active_target if active_target is not None else cluster_plan.get_target() - ) + actual_active_target = active_target if active_target is not None else cluster_plan._target # Calculate timestamps - start_time = ( - profile_metadata.get_profile_start().timestamp() * 1000 - ) # Convert to milliseconds - timestep_duration = ( - profile_metadata.get_timestep_duration().total_seconds() * 1000 - ) # Convert to milliseconds + start_time = profile_metadata.profile_start.timestamp() * 1000 # Convert to milliseconds + timestep_duration = profile_metadata.timestep_duration.total_seconds() * 1000 # Convert to milliseconds # Get scores, defaulting to 1.0 if they're NaN global_deviation_score = cluster_plan.get_global_deviation_score() - global_deviation_score = ( - 1.0 if global_deviation_score is None else global_deviation_score - ) + global_deviation_score = 1.0 if global_deviation_score is None else global_deviation_score constraint_violation_score = cluster_plan.get_constraint_violation_score() - constraint_violation_score = ( - 1.0 if constraint_violation_score is None else constraint_violation_score - ) + constraint_violation_score = 1.0 if constraint_violation_score is None else constraint_violation_score return cls( - device_plans=cluster_plan_data.get_device_plans(), + device_plans=cluster_plan_data._device_plans, profile_metadata=profile_metadata, - _id=str(cluster_plan.get_id()), - reason=cluster_plan.get_reason(), - target=cluster_plan.get_target(), + _id=str(cluster_plan._id), + reason=cluster_plan._reason, + target=cluster_plan._target, active_target=actual_active_target, current_plan=current_plan, start=int(start_time), @@ -403,8 +368,8 @@ def to_float_array(profile: JouleProfile) -> List[float]: Returns: A list of floats """ - result = [0.0] * profile.get_profile_metadata().get_nr_of_timesteps() - for i, element in enumerate(profile.get_elements()): + result = [0.0] * profile.metadata.nr_of_timesteps + for i, element in enumerate(profile.elements): result[i] = 0.0 if element is None else float(element) return result @@ -469,7 +434,7 @@ def get_target_energy(self) -> float: Returns: The target energy """ - return self._target.get_target_energy() + return self._target._global_target_profile.get_total_energy() def get_planned_energy(self) -> float: """Get the planned energy for this plan. @@ -477,86 +442,72 @@ def get_planned_energy(self) -> float: Returns: The planned energy """ - if self._planned_energy is None: - # Calculate the planned energy as the sum of all device plans - sum_energy = 0.0 - for device_plan in self._plan_data.get_device_plans(): - sum_energy += device_plan.get_profile().get_total_energy() - self._planned_energy = sum_energy + if self._planned_energy is not None: + return self._planned_energy + + sum_energy = 0.0 + for device_plan in self._plan_data._device_plans: + sum_energy += device_plan._profile.get_total_energy() - return self._planned_energy + self._planned_energy = sum_energy + return sum_energy def get_global_deviation_score(self) -> Optional[float]: - """Calculate the score for the deviation between target and plan. Lower is better. + """Get the global deviation score for this plan. Returns: - The global deviation score, or None if not set + The global deviation score """ - if self._global_deviation_score is None: - joule_target_segment = ( - self._target.get_global_target_profile().target_elements_to_joule_profile() - ) - if not joule_target_segment.get_elements(): - # No joule target, so that's by default a perfect score! - return 0.0 + if self._global_deviation_score is not None: + return self._global_deviation_score - target = joule_target_segment.get_elements() - plan_segment = self.get_joule_profile().subprofile( - joule_target_segment.get_profile_metadata().get_profile_start() - ) - plan = plan_segment.get_elements() + if self._target is None: + return None - sum_squared_distance = 0.0 - for i in range(len(target)): - if target[i] is not None: - sum_squared_distance += abs(target[i] - plan[i]) + plan_segment = self.get_joule_profile().subprofile(self._target._global_target_profile.metadata.profile_start) - if plan_segment.get_total_energy() == 0.0: - self._global_deviation_score = 0.0 - else: - self._global_deviation_score = ( - sum_squared_distance / plan_segment.get_total_energy() - ) + if plan_segment.get_total_energy() == 0.0: + return 0.0 - return self._global_deviation_score + sum_squared_distance = 0.0 + for i in range(len(plan_segment.elements)): + sum_squared_distance += (plan_segment.elements[i] - self._target._global_target_profile.elements[i]) ** 2 + + return sum_squared_distance / plan_segment.get_total_energy() def get_constraint_violation_score(self) -> Optional[float]: - """Calculate the score for violation of constraint targets. Lower is better. + """Get the constraint violation score for this plan. Returns: - The constraint violation score, or None if not set + The constraint violation score """ - if self._constraint_violation_score is None: - violation_sum = 0.0 - - for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): - plan = cp_profile.get_elements() - congestion_point_target = self._target.get_congestion_point_target( - cp_id - ) - - if congestion_point_target is not None: - # If there is no target, we don't need to calculate it for the violation sum - target_elements = congestion_point_target.get_elements() + if self._constraint_violation_score is not None: + return self._constraint_violation_score - for i in range(len(target_elements)): - element = target_elements[i] - max_joule = element.max_joule - min_joule = element.min_joule + if self._target is None: + return None - if max_joule is not None and plan[i] > max_joule: - violation_sum += abs(plan[i] - max_joule) + planned_energy = self.get_planned_energy() + if planned_energy == 0.0: + return 0.0 - if min_joule is not None and plan[i] < min_joule: - violation_sum += abs(min_joule - plan[i]) + sum_squared_distance = 0.0 + for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): + congestion_point_target = self._target.get_congestion_point_target(cp_id) + if congestion_point_target is None: + continue - planned_energy = self.get_planned_energy() - if planned_energy == 0.0: - self._constraint_violation_score = 0.0 - else: - self._constraint_violation_score = violation_sum / planned_energy + for i in range(len(cp_profile.elements)): + if cp_profile.elements[i] > congestion_point_target.elements[i].max_joule: + sum_squared_distance += ( + cp_profile.elements[i] - congestion_point_target.elements[i].max_joule + ) ** 2 + elif cp_profile.elements[i] < congestion_point_target.elements[i].min_joule: + sum_squared_distance += ( + cp_profile.elements[i] - congestion_point_target.elements[i].min_joule + ) ** 2 - return self._constraint_violation_score + return sum_squared_distance / planned_energy def has_constraint_violation(self) -> bool: """Check if this plan has any constraint violations. @@ -565,12 +516,12 @@ def has_constraint_violation(self) -> bool: True if there are constraint violations, False otherwise """ for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): - plan = cp_profile.get_elements() + plan = cp_profile.elements congestion_point_target = self._target.get_congestion_point_target(cp_id) if congestion_point_target is not None: # If there is no target, we don't need to check for violations - target_elements = congestion_point_target.get_elements() + target_elements = congestion_point_target.elements for i in range(len(target_elements)): element = target_elements[i] @@ -637,13 +588,13 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlan": activated_at=None, ) - def get_profile_metadata(self) -> Any: + def get_profile_metadata(self) -> ProfileMetadata: """Get the profile metadata for this plan. Returns: The profile metadata """ - return self._target.get_profile_metadata() + return self._target._global_target_profile.metadata def get_profile_per_congestion_point(self) -> Dict[str, JouleProfile]: """Get the profile for each congestion point. @@ -653,9 +604,9 @@ def get_profile_per_congestion_point(self) -> Dict[str, JouleProfile]: """ result = {} - for device_plan in self._plan_data.get_device_plans(): - cp_id = self._state.get_congestion_point(device_plan.get_connection_id()) - profile = device_plan.get_profile() + for device_plan in self._plan_data._device_plans: + cp_id = self._state.get_congestion_point(device_plan._device_id) + profile = device_plan._profile if cp_id in result: result[cp_id] = result[cp_id].add(profile) @@ -673,12 +624,12 @@ def get_joule_profile(self) -> JouleProfile: # Add all device plans to the profile sum_profile = JouleProfile( - profile_start=self.get_profile_metadata().get_profile_start(), - timestep_duration=self.get_profile_metadata().get_timestep_duration(), - profile_length=self.get_profile_metadata().get_nr_of_timesteps(), + profile_start=self._target._global_target_profile.metadata.profile_start, + timestep_duration=self._target._global_target_profile.metadata.timestep_duration, + profile_length=self._target._global_target_profile.metadata.nr_of_timesteps, value=0.0, ) - for device_plan in self._plan_data.get_device_plans(): - sum_profile = sum_profile.add(device_plan.get_energy_profile()) + for device_plan in self._plan_data._device_plans: + sum_profile = sum_profile.add(device_plan._profile) return sum_profile diff --git a/flexmeasures_s2/profile_steering/cluster_target.py b/flexmeasures_s2/profile_steering/cluster_target.py index 3286954..1a250d1 100644 --- a/flexmeasures_s2/profile_steering/cluster_target.py +++ b/flexmeasures_s2/profile_steering/cluster_target.py @@ -24,7 +24,7 @@ class ClusterTarget: def __init__( self, - generated_at: datetime, + generated_at: datetime, parent_id: Any, generated_by: Any, global_target_profile: TargetProfile, @@ -56,8 +56,8 @@ def __init__( if not cp_target.is_compatible(global_target_profile): raise ValueError( f"Congestion point target {cp_id} is not compatible with the global target profile. " - f"Expected global metadata: {global_target_profile.get_profile_metadata()}, " - f"but congestion profile had {cp_target.get_profile_metadata()}" + f"Expected global metadata: {global_target_profile.metadata}, " + f"but congestion profile had {cp_target.metadata}" ) def get_id(self) -> str: @@ -113,9 +113,7 @@ def get_congestion_point_targets(self) -> Dict[str, JouleRangeProfile]: """ return self._congestion_point_targets - def get_congestion_point_target( - self, congestion_point_id: str - ) -> Optional[JouleRangeProfile]: + def get_congestion_point_target(self, congestion_point_id: str) -> Optional[JouleRangeProfile]: """ Get the target for a specific congestion point. @@ -134,7 +132,7 @@ def get_profile_metadata(self) -> Any: Returns: The profile metadata """ - return self._global_target_profile.get_profile_metadata() + return self._global_target_profile.metadata def get_target_energy(self) -> float: """ diff --git a/flexmeasures_s2/profile_steering/common/abstract_profile.py b/flexmeasures_s2/profile_steering/common/abstract_profile.py index 7313285..271bde9 100644 --- a/flexmeasures_s2/profile_steering/common/abstract_profile.py +++ b/flexmeasures_s2/profile_steering/common/abstract_profile.py @@ -59,14 +59,14 @@ def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): raise ValueError("elements cannot be null") if ( 24 * 60 * 60 * 1000 - ) % profile_metadata.get_timestep_duration().total_seconds() * 1000 != 0: + ) % profile_metadata.timestep_duration.total_seconds() * 1000 != 0: raise ValueError("A day should be dividable by the timeStepDuration") if ( not self.start_of_current_aligned_date( - profile_metadata.get_profile_start(), - profile_metadata.get_timestep_duration(), + profile_metadata.profile_start, + profile_metadata.timestep_duration, ) - == profile_metadata.get_profile_start() + == profile_metadata.profile_start ): raise ValueError( "The startTimeDuration should be aligned with the timeStepDuration" diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py index a0a45da..a9261f8 100644 --- a/flexmeasures_s2/profile_steering/common/joule_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -13,11 +13,11 @@ def __init__( metadata: Optional[ProfileMetadata] = None, value: Optional[int] = None, profile_length: Optional[int] = None, - other_profile: Optional['JouleProfile'] = None + other_profile: Optional["JouleProfile"] = None, ): """ Initialize a JouleProfile with various parameter combinations. - + Args: profile_start: Start time of the profile timestep_duration: Duration of each timestep @@ -30,8 +30,7 @@ def __init__( # Case 1: Copy from another profile if other_profile is not None: super().__init__( - profile_metadata=other_profile.get_profile_metadata(), - elements=other_profile.get_elements().copy() + profile_metadata=other_profile.metadata, elements=other_profile.elements.copy() ) return @@ -49,11 +48,7 @@ def __init__( # Case 3: Initialize with single value and profile length if value is not None and profile_length is not None: elements = [value] * profile_length - super().__init__( - profile_start=profile_start, - timestep_duration=timestep_duration, - elements=elements - ) + super().__init__(profile_start=profile_start, timestep_duration=timestep_duration, elements=elements) return # Case 4: Basic initialization @@ -61,7 +56,7 @@ def __init__( super().__init__( profile_start=profile_start, timestep_duration=timestep_duration, - elements=elements if elements is not None else [] + elements=elements if elements is not None else [], ) return @@ -72,19 +67,15 @@ def validate(self, profile_metadata: ProfileMetadata, elements: List[int]): super().validate(profile_metadata, elements) # Add any JouleProfile-specific validation here if needed - def default_value(self) -> None: - return None + def default_value(self) -> int: + return 0 def subprofile(self, new_start_date: datetime) -> "JouleProfile": index = self.index_at(new_start_date) if index < 0: raise ValueError("New start date is outside profile range") new_elements = self.elements[index:] - return JouleProfile( - new_start_date, - self.get_profile_metadata().get_timestep_duration(), - new_elements - ) + return JouleProfile(new_start_date, self.metadata.timestep_duration, new_elements) def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleProfile": if nr_of_elements < len(self.elements): @@ -92,20 +83,17 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleProfile": else: new_elements = self.elements + [0] * (nr_of_elements - len(self.elements)) return JouleProfile( - self.get_profile_metadata().get_profile_start(), - self.get_profile_metadata().get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, new_elements, ) def is_compatible(self, other: AbstractProfile) -> bool: - return ( - self.get_profile_metadata() - == other.get_profile_metadata() - ) + return self.metadata == other.metadata def avg_power_at(self, date: datetime) -> Optional[float]: element = self.element_at(date) - return element / self.get_profile_metadata().get_timestep_duration().total_seconds() + return element / self.metadata.timestep_duration.total_seconds() def add(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): @@ -117,8 +105,8 @@ def add(self, other: "JouleProfile") -> "JouleProfile": else: summed_elements[i] = self.elements[i] + other.elements[i] return JouleProfile( - self.get_profile_metadata().get_profile_start(), - self.get_profile_metadata().get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, summed_elements, ) @@ -132,16 +120,16 @@ def subtract(self, other: "JouleProfile") -> "JouleProfile": else: diff_elements[i] = self.elements[i] - other.elements[i] return JouleProfile( - self.get_profile_metadata().get_profile_start(), - self.get_profile_metadata().get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, diff_elements, ) def absolute_values(self) -> "JouleProfile": abs_elements = [abs(e) for e in self.elements] return JouleProfile( - self.get_profile_metadata().get_profile_start(), - self.get_profile_metadata().get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, abs_elements, ) @@ -151,16 +139,12 @@ def sum_quadratic_distance(self) -> float: def is_below_or_equal(self, other: "JouleProfile") -> bool: if not self.is_compatible(other): raise ValueError("Profiles are not compatible") - return all( - a <= b for a, b in zip(self.elements, other.elements) if b is not None - ) + return all(a <= b for a, b in zip(self.elements, other.elements) if b is not None) def is_above_or_equal(self, other: "JouleProfile") -> bool: if not self.is_compatible(other): raise ValueError("Profiles are not compatible") - return all( - a >= b for a, b in zip(self.elements, other.elements) if b is not None - ) + return all(a >= b for a, b in zip(self.elements, other.elements) if b is not None) def minimum(self, other: "JouleProfile") -> "JouleProfile": if not self.is_compatible(other): @@ -168,8 +152,8 @@ def minimum(self, other: "JouleProfile") -> "JouleProfile": # skip None values min_elements = [min(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] return JouleProfile( - self.get_profile_metadata().get_profile_start(), - self.get_profile_metadata().get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, min_elements, ) @@ -179,8 +163,8 @@ def maximum(self, other: "JouleProfile") -> "JouleProfile": # skip None values max_elements = [max(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] return JouleProfile( - self.get_profile_metadata().get_profile_start(), - self.get_profile_metadata().get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, max_elements, ) @@ -199,4 +183,4 @@ def get_energy_for_timestep(self, index: int) -> Optional[int]: return None def __str__(self) -> str: - return f"JouleProfile(elements={self.elements}, profile_start={self.get_profile_metadata().get_profile_start()}, timestep_duration={self.get_profile_metadata().get_timestep_duration()})" + return f"JouleProfile(elements={self.elements}, profile_start={self.metadata.profile_start}, timestep_duration={self.metadata.timestep_duration})" diff --git a/flexmeasures_s2/profile_steering/common/joule_range_profile.py b/flexmeasures_s2/profile_steering/common/joule_range_profile.py index ec0cfc0..ac86e03 100644 --- a/flexmeasures_s2/profile_steering/common/joule_range_profile.py +++ b/flexmeasures_s2/profile_steering/common/joule_range_profile.py @@ -62,125 +62,36 @@ def __init__( if isinstance(profile_start, ProfileMetadata): metadata = profile_start if nr_of_timesteps is None: - nr_of_timesteps = metadata.get_nr_of_timesteps() + nr_of_timesteps = metadata.nr_of_timesteps elements = self._create_element_array(nr_of_timesteps, min_value, max_value) else: if elements is not None: - metadata = ProfileMetadata( - profile_start, timestep_duration, len(elements) - ) + metadata = ProfileMetadata(profile_start, timestep_duration or timedelta(), len(elements)) elif nr_of_timesteps is not None: - metadata = ProfileMetadata( - profile_start, timestep_duration, nr_of_timesteps - ) - elements = self._create_element_array( - nr_of_timesteps, min_value, max_value - ) + metadata = ProfileMetadata(profile_start, timestep_duration or timedelta(), nr_of_timesteps) + elements = self._create_element_array(nr_of_timesteps, min_value, max_value) else: - metadata = ProfileMetadata(profile_start, timestep_duration, 0) + metadata = ProfileMetadata(profile_start, timestep_duration or timedelta(), 0) elements = [] super().__init__(metadata, elements) - @staticmethod def _create_element_array( - nr_of_elements: int, min_value: Optional[int], max_value: Optional[int] + self, nr_of_timesteps: int, min_value: Optional[int], max_value: Optional[int] ) -> List[Element]: - """Create an array of elements with the given min and max values.""" - return [Element(min_value, max_value) for _ in range(nr_of_elements)] - - def default_value(self) -> Element: - return Element(None, None) + if min_value is None and max_value is None: + return [Element(None, None)] * nr_of_timesteps + return [Element(min_value, max_value)] * nr_of_timesteps def validate(self, profile_metadata: ProfileMetadata, elements: List[Element]): """Validate the elements and metadata for this profile.""" super().validate(profile_metadata, elements) # Add any JouleRangeProfile-specific validation here if needed - def is_within_range(self, other: JouleProfile) -> bool: - """ - Check if the given JouleProfile is within the range defined by this profile. - - Args: - other: JouleProfile to check - - Returns: - True if other is within the range, False otherwise - """ - if not self.is_compatible(other): - raise ValueError("Profiles are not compatible") - - for i in range(self.metadata.get_nr_of_timesteps()): - element = self.elements[i] - other_value = other.get_energy_for_timestep(i) - - if element.min_joule is not None and other_value < element.min_joule: - return False - - if element.max_joule is not None and other_value > element.max_joule: - return False - - return True - - def difference_with_max_value(self, other: JouleProfile) -> JouleProfile: - """ - Calculate the difference between this profile's max values and the other profile. - - Args: - other: JouleProfile to compare against - - Returns: - JouleProfile containing the differences - """ - if not self.is_compatible(other): - raise ValueError("Profiles are not compatible") - - return_values = [] - - for i in range(self.metadata.get_nr_of_timesteps()): - if self.elements[i].max_joule is None: - return_values.append(None) - else: - return_values.append( - self.elements[i].max_joule - other.get_energy_for_timestep(i) - ) - - return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), - return_values, - ) - - def difference_with_min_value(self, other: JouleProfile) -> JouleProfile: - """ - Calculate the difference between this profile's min values and the other profile. - - Args: - other: JouleProfile to compare against - - Returns: - JouleProfile containing the differences - """ - if not self.is_compatible(other): - raise ValueError("Profiles are not compatible") - - return_values = [] - - for i in range(self.metadata.get_nr_of_timesteps()): - if self.elements[i].min_joule is None: - return_values.append(None) - else: - return_values.append( - self.elements[i].min_joule - other.get_energy_for_timestep(i) - ) - - return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), - return_values, - ) + def default_value(self) -> Element: + return Element(None, None) def subprofile(self, new_start_date: datetime) -> "JouleRangeProfile": """ @@ -195,11 +106,8 @@ def subprofile(self, new_start_date: datetime) -> "JouleRangeProfile": index = self.index_at(new_start_date) if index < 0: raise ValueError("New start date is outside profile range") - new_elements = self.elements[index:] - return JouleRangeProfile( - new_start_date, self.metadata.get_timestep_duration(), new_elements - ) + return JouleRangeProfile(new_start_date, self.metadata.timestep_duration, new_elements) def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleRangeProfile": """ @@ -214,13 +122,10 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleRangeProfile": if nr_of_elements < len(self.elements): new_elements = self.elements[:nr_of_elements] else: - new_elements = self.elements + [Element.NULL] * ( - nr_of_elements - len(self.elements) - ) - + new_elements = self.elements + [Element(None, None)] * (nr_of_elements - len(self.elements)) return JouleRangeProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, new_elements, ) @@ -235,12 +140,65 @@ def is_compatible(self, other: AbstractProfile) -> bool: True if compatible, False otherwise """ - return self.metadata == other.get_profile_metadata() + return self.metadata.timestep_duration == other.metadata.timestep_duration and len(self.elements) == len( + other.elements + ) + + def get_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index].max_joule + return None + + def get_min_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index].min_joule + return None + + def get_max_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index].max_joule + return None + + def add(self, other: "JouleRangeProfile") -> "JouleRangeProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + summed_elements = [Element(None, None)] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i].min_joule is None or other.elements[i].min_joule is None: + summed_elements[i] = Element(None, None) + else: + summed_elements[i] = Element( + self.elements[i].min_joule + other.elements[i].min_joule, + self.elements[i].max_joule + other.elements[i].max_joule, + ) + return JouleRangeProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + summed_elements, + ) + + def subtract(self, other: "JouleRangeProfile") -> "JouleRangeProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + diff_elements = [Element(None, None)] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i].min_joule is None or other.elements[i].min_joule is None: + diff_elements[i] = Element(None, None) + else: + diff_elements[i] = Element( + self.elements[i].min_joule - other.elements[i].max_joule, + self.elements[i].max_joule - other.elements[i].min_joule, + ) + return JouleRangeProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + diff_elements, + ) def __str__(self) -> str: """Return a string representation of this profile.""" return ( f"JouleRangeProfile(elements={self.elements}, " - f"profile_start={self.metadata.get_profile_start()}, " - f"timestep_duration={self.metadata.get_timestep_duration()})" + f"profile_start={self.metadata.profile_start}, " + f"timestep_duration={self.metadata.timestep_duration})" ) diff --git a/flexmeasures_s2/profile_steering/common/profile_metadata.py b/flexmeasures_s2/profile_steering/common/profile_metadata.py index 02194a0..ebce1e1 100644 --- a/flexmeasures_s2/profile_steering/common/profile_metadata.py +++ b/flexmeasures_s2/profile_steering/common/profile_metadata.py @@ -35,9 +35,7 @@ def get_profile_duration(self) -> timedelta: def get_profile_start_at_timestep(self, i: int) -> datetime: if i >= self.nr_of_timesteps or i < 0: - raise ValueError( - f"Expected i to be between 0 <= i < {self.nr_of_timesteps} but was {i}" - ) + raise ValueError(f"Expected i to be between 0 <= i < {self.nr_of_timesteps} but was {i}") return self.profile_start + self.timestep_duration * i def get_starting_step_nr(self, instant: datetime) -> int: @@ -54,8 +52,7 @@ def is_aligned_with(self, other: "ProfileMetadata") -> bool: return ( self.timestep_duration == other.timestep_duration and ( - abs((self.profile_start - other.profile_start).total_seconds()) - % self.timestep_duration.total_seconds() + abs((self.profile_start - other.profile_start).total_seconds()) % self.timestep_duration.total_seconds() ) == 0 ) @@ -63,47 +60,34 @@ def is_aligned_with(self, other: "ProfileMetadata") -> bool: def to_dict(self) -> dict: return { self.PROFILE_START_KEY: int(self.profile_start.timestamp() * 1000), - self.TIMESTEP_DURATION_KEY: int( - self.timestep_duration.total_seconds() * 1000 - ), + self.TIMESTEP_DURATION_KEY: int(self.timestep_duration.total_seconds() * 1000), self.NR_OF_TIMESTEPS_KEY: self.nr_of_timesteps, } @staticmethod def from_dict(data: dict) -> "ProfileMetadata": - profile_start = datetime.fromtimestamp( - data[ProfileMetadata.PROFILE_START_KEY] / 1000 - ) - timestep_duration = timedelta( - milliseconds=data[ProfileMetadata.TIMESTEP_DURATION_KEY] - ) + profile_start = datetime.fromtimestamp(data[ProfileMetadata.PROFILE_START_KEY] / 1000) + timestep_duration = timedelta(milliseconds=data[ProfileMetadata.TIMESTEP_DURATION_KEY]) nr_of_timesteps = data[ProfileMetadata.NR_OF_TIMESTEPS_KEY] return ProfileMetadata(profile_start, timestep_duration, nr_of_timesteps) def subprofile(self, new_start_date: datetime) -> "ProfileMetadata": if new_start_date < self.profile_start: - raise ValueError( - "The new start date should be after the current start date" - ) + raise ValueError("The new start date should be after the current start date") new_start_date = self.next_aligned_date(new_start_date, self.timestep_duration) skipped_steps = int( - (new_start_date - self.profile_start).total_seconds() - // self.timestep_duration.total_seconds() + (new_start_date - self.profile_start).total_seconds() // self.timestep_duration.total_seconds() ) nr_of_elements = max(0, self.nr_of_timesteps - skipped_steps) return ProfileMetadata(new_start_date, self.timestep_duration, nr_of_elements) def adjust_nr_of_elements(self, nr_of_elements: int) -> "ProfileMetadata": - return ProfileMetadata( - self.profile_start, self.timestep_duration, nr_of_elements - ) + return ProfileMetadata(self.profile_start, self.timestep_duration, nr_of_elements) @staticmethod def next_aligned_date(date: datetime, timestep_duration: timedelta) -> datetime: # Align the date to the next timestep - remainder = ( - date - datetime.min - ).total_seconds() % timestep_duration.total_seconds() + remainder = (date - datetime.min).total_seconds() % timestep_duration.total_seconds() if remainder == 0: return date return date + timedelta(seconds=(timestep_duration.total_seconds() - remainder)) diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py index dc62266..32b1f8e 100644 --- a/flexmeasures_s2/profile_steering/common/soc_profile.py +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -5,16 +5,12 @@ class SoCProfile(AbstractProfile[float, "SoCProfile"]): - def __init__( - self, profile_metadata: ProfileMetadata, elements: Optional[List[float]] = None - ): + def __init__(self, profile_metadata: ProfileMetadata, elements: Optional[List[float]] = None): self.profile_metadata = profile_metadata - self.timestep_duration = self.profile_metadata.get_timestep_duration() - self.profile_start = self.profile_metadata.get_profile_start() - self.profile_end = self.profile_metadata.get_profile_end() - super().__init__( - self.profile_metadata, elements if elements is not None else [] - ) + self.timestep_duration = self.profile_metadata.timestep_duration + self.profile_start = self.profile_metadata.profile_start + self.profile_end = self.profile_metadata.profile_end + super().__init__(self.profile_metadata, elements if elements is not None else []) def default_value(self) -> Optional[float]: return None @@ -23,10 +19,8 @@ def __str__(self) -> str: return f"SoCProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" def is_compatible(self, other: AbstractProfile) -> bool: - return ( - self.metadata.get_timestep_duration() - == other.get_profile_metadata().get_timestep_duration() - and len(self.elements) == len(other.get_elements()) + return self.metadata.timestep_duration == other.metadata.timestep_duration and len(self.elements) == len( + other.elements ) def validate(self, profile_metadata: ProfileMetadata, elements: List[float]): @@ -37,9 +31,7 @@ def subprofile(self, new_start_date: datetime) -> "SoCProfile": if index < 0: raise ValueError("New start date is outside profile range") new_elements = self.elements[index:] - return SoCProfile( - new_start_date, self.metadata.get_timestep_duration(), new_elements - ) + return SoCProfile(new_start_date, self.metadata.timestep_duration, new_elements) def adjust_nr_of_elements(self, nr_of_elements: int) -> "SoCProfile": if nr_of_elements < len(self.elements): @@ -47,7 +39,7 @@ def adjust_nr_of_elements(self, nr_of_elements: int) -> "SoCProfile": else: new_elements = self.elements + [0.0] * (nr_of_elements - len(self.elements)) return SoCProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, new_elements, ) diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py index 0ee6ea2..b82eab3 100644 --- a/flexmeasures_s2/profile_steering/common/target_profile.py +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -5,9 +5,7 @@ from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata -class TargetProfile( - AbstractProfile[Union["TargetProfile.Element", None], "TargetProfile"] -): +class TargetProfile(AbstractProfile[Union["TargetProfile.Element", None], "TargetProfile"]): class Element: pass @@ -53,53 +51,37 @@ def subprofile(self, new_start_date: datetime) -> "TargetProfile": if index < 0: raise ValueError("New start date is outside profile range") new_elements = self.elements[index:] - return TargetProfile( - new_start_date, self.metadata.get_timestep_duration(), new_elements - ) + return TargetProfile(new_start_date, self.metadata.timestep_duration, new_elements) def adjust_nr_of_elements(self, nr_of_elements: int) -> "TargetProfile": if nr_of_elements < len(self.elements): new_elements = self.elements[:nr_of_elements] else: - new_elements = self.elements + [self.NULL_ELEMENT] * ( - nr_of_elements - len(self.elements) - ) + new_elements = self.elements + [self.default_value()] * (nr_of_elements - len(self.elements)) return TargetProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, new_elements, ) def is_compatible(self, other: AbstractProfile) -> bool: - return ( - self.metadata.get_timestep_duration() - == other.get_profile_metadata().get_timestep_duration() - and len(self.elements) == len(other.get_elements()) + return self.metadata.timestep_duration == other.metadata.timestep_duration and len(self.elements) == len( + other.elements ) def get_total_energy(self) -> int: - return sum( - e.get_joules() - for e in self.elements - if isinstance(e, TargetProfile.JouleElement) - ) + return sum(e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)) def target_elements_to_joule_profile(self) -> JouleProfile: - joules = [ - e.get_joules() - for e in self.elements - if isinstance(e, TargetProfile.JouleElement) - ] + joules = [e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)] return JouleProfile( - self.metadata.get_profile_start(), - self.metadata.get_timestep_duration(), + self.metadata.profile_start, + self.metadata.timestep_duration, joules, ) def nr_of_joule_target_elements(self) -> int: - return len( - [e for e in self.elements if isinstance(e, TargetProfile.JouleElement)] - ) + return len([e for e in self.elements if isinstance(e, TargetProfile.JouleElement)]) def subtract(self, other: JouleProfile) -> "TargetProfile": if not self.is_compatible(other): @@ -109,9 +91,7 @@ def subtract(self, other: JouleProfile) -> "TargetProfile": if isinstance(element, TargetProfile.JouleElement): other_energy = other.get_energy_for_timestep(i) if other_energy is not None: - diff_elements.append( - TargetProfile.JouleElement(element.get_joules() - other_energy) - ) + diff_elements.append(TargetProfile.JouleElement(element.get_joules() - other_energy)) else: diff_elements.append(self.NULL_ELEMENT) else: @@ -130,9 +110,7 @@ def add(self, other: JouleProfile) -> "TargetProfile": if isinstance(element, TargetProfile.JouleElement): other_energy = other.get_energy_for_timestep(i) if other_energy is not None: - sum_elements.append( - TargetProfile.JouleElement(element.get_joules() + other_energy) - ) + sum_elements.append(TargetProfile.JouleElement(element.get_joules() + other_energy)) else: sum_elements.append(self.NULL_ELEMENT) else: @@ -144,14 +122,10 @@ def add(self, other: JouleProfile) -> "TargetProfile": ) def sum_quadratic_distance(self) -> float: - return sum( - e.get_joules() ** 2 - for e in self.elements - if isinstance(e, TargetProfile.JouleElement) - ) + return sum(e.get_joules() ** 2 for e in self.elements if isinstance(e, TargetProfile.JouleElement)) def __str__(self) -> str: - return f"TargetProfile(elements={self.elements}, profile_start={self.metadata.get_profile_start()}, timestep_duration={self.metadata.get_timestep_duration()})" + return f"TargetProfile(elements={self.elements}, profile_start={self.metadata.profile_start}, timestep_duration={self.metadata.timestep_duration})" def get_profile_metadata(self) -> ProfileMetadata: return self.metadata @@ -162,9 +136,9 @@ def get_elements(self) -> List["TargetProfile.Element | None"]: @staticmethod def null_profile(metadata: ProfileMetadata) -> "TargetProfile": return TargetProfile( - metadata.get_profile_start(), - metadata.get_timestep_duration(), - [TargetProfile.NULL_ELEMENT] * metadata.get_nr_of_timesteps(), + metadata.profile_start, + metadata.timestep_duration, + [TargetProfile.NULL_ELEMENT] * metadata.nr_of_timesteps, ) @staticmethod diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py index f63eded..c509101 100644 --- a/flexmeasures_s2/profile_steering/congestion_point_planner.py +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -22,17 +22,17 @@ def __init__(self, congestion_point_id: str, congestion_target: JouleRangeProfil self.MAX_ITERATIONS = 1000 self.congestion_point_id = congestion_point_id self.congestion_target = congestion_target - self.profile_metadata = congestion_target.get_profile_metadata() + self.profile_metadata = congestion_target.metadata # Create an empty profile (using all zeros) self.empty_profile = JouleProfile( - self.profile_metadata.get_profile_start(), - self.profile_metadata.get_timestep_duration(), + self.profile_metadata.profile_start, + self.profile_metadata.timestep_duration, elements=[0] * self.profile_metadata.nr_of_timesteps, ) # List of device controllers that can be used for planning - self.devices = [] + self.devices: List[DevicePlanner] = [] # Keep track of accepted and latest plans self.accepted_plan = self.empty_profile diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index ce2c0dd..14d4af3 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -66,15 +66,15 @@ def set_targets( def add_state(self, state: FrbcState) -> None: if state and state.is_within_fill_level_range(): - stored_state = self.state_list[state.get_bucket()] + stored_state = self.state_list[state.bucket] if stored_state is None: - self.state_list[state.get_bucket()] = state + self.state_list[state.bucket] = state state.set_selection_reason(SelectionReason.NO_ALTERNATIVE) else: selection_result = state.is_preferable_than(stored_state) if selection_result.result: - self.state_list[state.get_bucket()] = state - self.state_list[state.get_bucket()].set_selection_reason(selection_result.reason) # type: ignore + self.state_list[state.bucket] = state + self.state_list[state.bucket].set_selection_reason(selection_result.reason) # type: ignore else: if ( self.emergency_state is None diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py index 676afef..51fa840 100644 --- a/flexmeasures_s2/profile_steering/root_planner.py +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -30,9 +30,9 @@ def __init__( # Create an empty JouleProfile. # We assume that target exposes get_profile_start(), timestep_duration and nr_of_timesteps. self.empty_profile = JouleProfile( - self.target.get_profile_metadata().get_profile_start(), - self.target.get_profile_metadata().get_timestep_duration(), - elements=[0] * self.target.get_profile_metadata().get_nr_of_timesteps(), + self.target.metadata.profile_start, + self.target.metadata.timestep_duration, + elements=[0] * self.target.metadata.nr_of_timesteps, ) self.cp_controllers: List[CongestionPointPlanner] = [] self.root_ctrl_planning = self.empty_profile @@ -71,17 +71,11 @@ def plan( return # Determine maximum and minimum priority classes across congestion points. - max_priority_class = max( - cpc.max_priority_class() for cpc in self.cp_controllers - ) - min_priority_class = min( - cpc.min_priority_class() for cpc in self.cp_controllers - ) + max_priority_class = max(cpc.max_priority_class() for cpc in self.cp_controllers) + min_priority_class = min(cpc.min_priority_class() for cpc in self.cp_controllers) # Iterate over the priority classes. - for priority_class in range( - min_priority_class, min(max_priority_class, max_priority_class_external) + 1 - ): + for priority_class in range(min_priority_class, min(max_priority_class, max_priority_class_external) + 1): i = 0 best_proposal = None @@ -97,14 +91,12 @@ def plan( try: proposal = cpc.create_improved_planning( difference_profile, - self.target.get_profile_metadata(), + self.target.metadata, priority_class, plan_due_by_date, ) if proposal is not None: - if best_proposal is None or proposal.is_preferred_to( - best_proposal - ): + if best_proposal is None or proposal.is_preferred_to(best_proposal): best_proposal = proposal except Exception as e: print(f"Error getting proposal from controller: {e}") @@ -115,12 +107,8 @@ def plan( break # Update the root controller's planning based on the best proposal. - self.root_ctrl_planning = self.root_ctrl_planning.subtract( - best_proposal.get_old_plan() - ) - self.root_ctrl_planning = self.root_ctrl_planning.add( - best_proposal.get_proposed_plan() - ) + self.root_ctrl_planning = self.root_ctrl_planning.subtract(best_proposal.get_old_plan()) + self.root_ctrl_planning = self.root_ctrl_planning.add(best_proposal.get_proposed_plan()) # Let the origin device/controller accept the proposal. best_proposal.get_origin().accept_proposal(best_proposal) @@ -131,14 +119,11 @@ def plan( # Check stopping criteria: if improvement values are below thresholds or max iterations reached. if ( - best_proposal.get_global_improvement_value() - <= self.energy_iteration_criterion + best_proposal.get_global_improvement_value() <= self.energy_iteration_criterion ) or i >= self.MAX_ITERATIONS: break - print( - f"Optimizing priority class {priority_class} was done after {i} iterations." - ) + print(f"Optimizing priority class {priority_class} was done after {i} iterations.") if i >= self.MAX_ITERATIONS: print( f"Warning: Optimization stopped due to iteration limit. Priority class: {priority_class}, Iterations: {i}" diff --git a/flexmeasures_s2/profile_steering/tests/my plot - D = 10 - B = 20 - S = 10 - T = 160.png b/flexmeasures_s2/profile_steering/tests/my plot - D = 10 - B = 20 - S = 10 - T = 160.png new file mode 100644 index 0000000000000000000000000000000000000000..7683ed01f5617e13e305f1399bef43d5d4202bbe GIT binary patch literal 47770 zcmc${cRmG)U7V$r+Uf zB?|(QM4Jo(k~4g@8<_E&Gxy$e@BQ9;e~du)FYH*gYSpSek8jCJ((Gc~MMXtLBX#4N z0u|NPG%BhsM}OH4pYVST-wZ!Q>?Ks~6|Ifz@95bYQpxDq|7KxrZ(*u`)X~t^&eYn9 zpNH=(4?ovY6MOsL>_m8ZE&sfN$J*AI*N8342cEL?w;O79R8)KQ(0`j=i6@v+QRQ!! zy7sG*Q^fbq9if_rO;leq26yf|I(6U|>}8jrQ!)1s_{5x1@bEb#agCkh_iew>`~0qY zODW8omRd&Q=utNND?wkRu53PeSwu?k!&2QHp^S?etu*Z6-$Pnwrw{YH*LGNcE^_UQ zup7qU71*H(R7Vvf+b*JCs6r3!D@8p&YJNZ! z{drqvGd29UOO(>x1V8@}_^)q%U7xB`B0TgemXWv1eYR6xMMY&P+}xLnii;7Rd0Eqj zL?`k3mD|wASV>~Z%7V?(ctypiR@I_mws3vTh)r?8%=E-!5@i!kYju!BG%ocRf?R;Sz z<$TIzdMN9L!F$(awvJXaUTdwD(c#wTI}#28B! zno`NGU5nZlx!)f8wOHp5#y`>6Y+fJptHieUzHn=?y6B3&X01D&g8uuc-bccC)tihJ z&H5+je90G%KEPJRoujGw+na4RjWR-{V~>~{$Oflm!f2(r(yxVAG$bk}ygcB0YI$)s zH9sO-4x@`7R&;3oU0v0@l|H&+Ca~Rc(_Q}?)W@jm33Bd3ilma%k`#)_#o~P2~ zNvXw*Tek1^#s{l&?78?ojhy|Q-?;n%gZ3fT)wv2>StW)unO0|cNTvJUUa?m$wF-%} z;w$3;2GdO{yo7wmcFP>6nO0+C*O6u;UD2favwC>+BwEl-4$Sorc{b=ZQq zjSVeX4D6<-r#~jhMGG$s#2Ob^F3pXT%sm#{yQ~UFTS`_O_Dj3?O?fE1?i)%<_20&K z`~4qtOa0=k=EU^t_G4c}7iLD7PDk1+$k!;F%9=kPU97S8;1AaEm?tkR&vuD_aT!jg zZ$H>Lt+UV&;$!(-o3|*sil=}$K9lLuZjm8lBW4*g5f&%-X4`Z*lQnJK^knqvrIjC# z#LGm6iHc=^X!Bwd1ZLk-^OpU(gGGrbua3(svM!$Qqi<&z%j=I49?k96C()^JiR~~P zoXnbOGncH35;cJSb7$Yd90@+?eekp_msrT@h~M5?q>Ag8c@K2t*+sa|v{Em9*%T8i z51S&BgH7nE(qpWk`@+;`yE;*Wgh)q@13P+~-v<7I@mxwcDS`2bi)*p=m<)F!KR!)f zSsV*U(JG*yy|_Hpi0iq935#p&4iG=$`aNCpX1L(UiSEOfoPPUWFjkyi$&p06^Y(uI$WSecU7 z7k2!Dx-9Kxs>ztGRQ66GIv&pKBlI0M6)bo#Cm|2_vTEnUoJ*svm}p!Vh2MYTI_>Pm ziT5XPi;*rviP!+vbGL8UEbFXHgb;?Ui>8|i!^lV}LP&%`SeKEmrB^ z74>X|-Hz1^S&@mCi`E7!lZ7!)$uk675SVc@Op*NLv+*WRpEsVJjr1 zu%6YuY&w$FVpX{Gyv{9t3TCV@^XSS;@!UdjHwsQFxH>@u05L{;5o5YJ@bJoQl$ zR}o*=TIhB}L&Rb1OVPLoG8#5o3lYVuD~o3 z-}$Wfr~x*jP`mk9W}__0IK^VLbO=UAO#0Gyi#k%RD(1_MyLYm=6q(8 zvIbq9O^enYy4iwm|BF5x@z!qLOxR@iM1}s?IF3XmzM#>9>T^{}oyzl?$!fHG!R!t6;;y9R7uIqk`*zcJM z4L_W1zzmTN8%M|o5)$Tj4W7aDM|*nM^srF9SHm1azL3N^U>g6iLTn~oKhyYQ=2?_*?h#82@Hf=VTQy(1LsAzQM+i) zwl;+--LMaV>bn}C@@=S_ZU`C1qLb7!*7Wm+IpK710^DCa?9ASu`zfDzI_^j0I zl)GYHt5G=JyBm$)?>h$-A6}_87CU%4+RZjS_NgOnqwoDGP3i^ilT=(5cF)e<*!jFq zD)~IKDBD90PT8>2o^9Sx^d2ODu)roGut61%PzMl(&u@zPHgC^RV& zj21?$JvB~7Z>M2AuakPwpxpQ6TP`d!eyf^G&G}(=ECW7I*_6rclX`9PgdN`J<%xhx zuStt>n-+0b4Dm|%z)XU#08PCdoeH;UR49RXJDgRL+2-0f-XzRD*#GPE17W5f8idVT zsrn+fDpNl)mrZDnvsOUXn&GN&V~+oz##itgIpgp76Ky$1F2%n|?PYnJnGyI@eK5Rb z;;1~;E4IM_>%_1#*u6D_dshWoG&9l}Iaodq)@6)(KC`Xi<2LY&p7e{G2Io23 zcRV{Um#843|Lr=HrBb2MLWB9Q98Wm9W&1tnt8{9o?E*Oi6$DiAeIG)m)DyAiu>SZs zeLMDVv-0MzU&U1xOc@#we56kt@1r$0S1{BUSyo*=cbkhaoz0 z>hlG6sa;gn&vy}>|0up7{Wx*Tnz33fB?V)+I=B$MGL=B`cW9HBy7*!6R;{U|Gu#yb z;1yr=ZpYmRMj={`>>gv0fGNg%p2^WqMkpLO=3Z zm_uAq>LU$bCj&6M@XxQ9n#{reJ|fBLZZF?E1t5pk?sVhs%83xE4?-pLHOCJ>JHVZY zw}ydXXCo>!oUS2t+lO-S=` zQrMBz+KXefIyd9>7UV>yKQXgLAMgb@Zp2qDMl&S0=#n@w@=!D@Eqp4=OCYWhlPYVf^WpJn2Pf z$zPtB{>cfZF@7);4Kcsoqj+1J5^()lQ`P)+fz6tBHRSoK z(fr|*N=C0_I4LOKR=&*fnM3y z?y1Mv>_~f#(=r0;8J#POU8}`YALKkrr?iwX_$r6ramdk(alN^UlKCEVA>GZ056_ah!%7A>AwJw3d37G zr$5fzA7Llkqs=#s(@Gq~J99RPt+$=&q<8FH|{kWVo#y~Y^;xM>Me{z#@RfCXekmRwOc3chn z4I6R_YaTs_e`lRwE#LUWQb9tw_gH#kj?3V0J%dceQ{1PhO3A0N$@u58Dq0TMbn$EV z&hv6%NAUB8iA8C7TlQW`3zcbhdw7WItaawT+IyLe!RnhE^@8twaqg!dd$uR2W64CU z_qNL9iB&49o`H9J#Um{1-Obo*21| zl{>gCOPlUGpYUp`E_-}1srZ<*IybbAEe&=XlYWd#bRlOujhP6YE$;cUaNPd8)7Ba5KUVtzFCeM?JZRF zzVvU6MvE6m30F^qusHWTA^lNnuM~sU6e-8jRM?EMFRX3z4jM+K-P>du_U~%+*I{&Q zOHxVI_g;jsNMpD1HmdiXU*Furxrg^hxu(q7TKfq!pYeYc!tq$)N>VK5YJ20GO-JCt zFNZkX-#mY~l%O{=c;k_wX*3_p?W2}CQ+Q($VJfOL-F3P^eLC$FA_(65uJZ=NxmR~{ z#Kms$XTESQSluj<5L=19Py5=iHOW4v0IQ;vCH#84@M)>fnWri&^WGxpTin|p-`=4h zHM+k-N>_q5NTt{BbHSZ4iIs)H_YVQaK@3%Kg!CfV?uohPg^FPG EQ$1<8(2Q^Y` zdYQv>%}xv2G|5`zl?T~bkO`5W%di*Idl_4n$^<=@=3Y9zinyot{h;bUBQiRnj^C~_ z|5m!m&aL`WqGC5Oqt+)WC7pm!LHyzfS{U)%`EOo1Ls&ozhMe6~TSLksr- z9n%y#%FvX2KcMP5R&>WEOatJaIkM3xq>@1UeRyGdIA`C9t#F~PeAsOI*z>&kzHo!# zsd@>dD)csiVPOz;nL5*F=y#a^l>f!i zTqhth$P-n()(%F>BG^3#IA^Wn70r#RL-!-IwrBZsaD$!WU<2DJ*$CC8aGYj$<%MjC z!zx2evZ){Q?E3TaJ?Aq-6Y88?_oPXv|zZcJ(3cyLQ+FgXH|-)Dp2hA_Fn{QOXd%8@pCNH;y`dZ#zxc z$O2fV{6m+UpPpwEj}&oG|Bh>ZbVuZ4@{{} zurGV_Nkmmvn~ljTS5KZz00Mti2>*;+t4$Lk=>dLDSUj@5`5`S>P@i#M^k~N0U7WN# zQ|2Q>yTWMAG1=VdWd|%*Ir95 z`pAhE;Nv7m{VIW!2!n(F!El5{f3EDbo-|LF(;b2Ecs!?MIoYID-Sz_;ZWsmt|5CvW zc7^pgUuVG`UfCKv%@?=WgzPs;oll=`f#9~|O43Uy>SzMVmhhtzy+`Ad4gQ*%OXQs{ z_naGjwK5m=q@yR9y`dSX1^>yu(cL@Pz1FwNu~=~TI* z{6&Ud5n?6cuk}1W9hLjOI~N=@&L>Xk$qrZ!pSJHLGRkq_Z_A1}3^#Kl`c8P5n4!Ng zHAuaj1>y3-+{XZqK*NSaoe~efcKn2W?S+1>r!DAS`bqjLZOz)QBXkJW-i#Cxu*&NV zo#G(9dINW;VLzJ?7@#>oA==X-?Cd!!3&RXK3H^z_cCreu zIV?je8xKfx$z%6B0@*{qWBU!s`F6cWEMx$FL>GTRJM7s2TLut!TQt+gXHp+S7|Nbv zhWK(!e|345H|nBge@}(@iVYD61c}{Xkr6_i_KI){}j!eRRjfuIBHG}_?MT1PHXGD0juTB4lV%2Z!!T*cQH-gulENX#F}ZYMK!&0X)FPCPg8 zRGP=sf~9bXkmOUDV6Wv;JvZKsyM`r{V}hg*9jWQ`?STX}*%-hcnUDQVU{sC(Z_$*( z(sZgP_tV>no4KTuTmrL0Kr{LvY?tkPi`{DiSZd@6 zd^i$eq*BJSl_CSxN7R${NH@txUc6&+?Yo{2&tg4SSFkM!9BJIypI`FvWy96V zo!YXF?ty{K9621p$=PjY*bt#k`^NG~M8}PfAwot;20vmC3tuRETd)Raqa(&aXr4ofaE^{PHy?TWTe@KTL7`#~ZpekF>R1 z>4I)qvato1%N=4Z3K?Pn@3!#1C5pk6N6AcHT8ePKpMx!&LqN_a4if{dA(*I1+u*C% zHwBZ`fwp{`^(*U%5+`CP>UF7ZRCsqx#g?Ov3}arLn5L9GS1} zT?zFZ;n8u5glp24PZD==)~sTJ^b!|npgkfSJBjmuJUu+wSl$vAI2HQQ;re(4Yfx#J z3Jj!lTuBNfzH9)26c8Dw+1Z*_%mFxnLNQ%2T zJi(sghN2NOPpY3fNy8%!!4Mhp2)+#3PA^OzGXbNORM!gmDSc%n#w$@rCXt`3d)}wd zHu%e9cJ|OV7Ri7kT1rBA`f?!C+eu$%fI5|vSR@0VuU-8ICgj<9$)Vm59iFyLisuGl zY4Nm;^pzv%abg)8)febw##57m+0v&-r_6XZdV8Y|L`CE8SXX}Y50IX$X!yv`=z1eP z;lu$k$Q1a|X&ajU;ela}Z|5{Nf$Z94$&+3ZLE1$wBw!&ms+}>CbJ7_p+xIZ5Ry%Uk zIV?2i6w|HFdakOR#5YtY23lYw+rpoHDi4j~Wh)T;tb31q;j~PcQb(}*)~c%?5iSv4 znd`<4H{O~G+=r1o0p^efcj8!l@Y_$yA#o=TtpG*F`BXpLGFy%BX7Ri{Re#`JOwjG1 zg!6aZt?*kFF}e6%X_nco@uAphoX*nA&sMBKM{jQVp=is4wZY%k4s*t~I)=vi)DH+@P-w)#tlS%^ixSh||b{KXvJyrE+t+qrNCU=NfH1xUdz=9ww!%3w&aZ_#ujlFHlv`uG49==EpY+lZNQnx-Mp%c= zb5&d!_0s1rE__5|U}APm$*XAv-m4BvfJsi8x5!>TPpSA4Fc!iH=;4EuIS#0yWFJc0 zU<1ZlQgxQ*D#ZN_0z|WK9CGjF)L~Cq?Pgs)7G0_n9d$Q(c2u?pW?2kHm)um+nFr( zl`M}~Gg-UBV)GGJcxsKfyU|JHp}l9ryOxZ`7f>q64RXqUz!9I@BmDI)*#%NNOk+JEH75bc}zSbRO~){?xepk*_$ke zaQ6~8k^s(>+?V4X0b&a#28LM7`5@l9)DO>2SJZi~OwK{Jlo`dk<4202V?tk|p2{aK za22f}=z~ldZgv7O!$Z!pz|0-*vyTSqjK3ECA*Zv~P8C-KuHMTs{0r;_kmreNhlagDIS?_3Ab7-7c%nvzOpFP z`K5zS<$R~(^0eiV8KZDZWu=|?o==ddVGv*V7@!~N(42@VKM6TA4Q62QNS1?B!#b-X zGhbZCj{lkoptJ&(hKgoNAR$@d+!-tQb{i zM!MYId18hVC^%j z+zfH~XS1Ya{l4mltlCm8wVymFrV>6e<%!mPq8?$>qPpi{cHV=s^T7z(9ch7H8r+rzOv zOXX2|nHyV$0-Z9!2yA(QnRXmUGOdAK?=^)bE%Vkgt+%RZbIico*utPY9X%$3iTjzvC% zsJHTx0ul62m5w=lg5Q)C@z>-SjaKAQ^i(65L74CTR35^SrH&B^!UMpmRR7%Y$AVJw zG>|8BSBLwR3ALC2nXwTt^tWxad}hZhSOZXaGE_{7R)BTqBBUwcRT+Pa?lT12o;KHb zC3Npj;+``#MftEYac@Qv_1S3zQZ4+QUR97%h(N8&gKivurK7O?DZm@SQs-HO8*Y%xTE^jmrw_tOD$x2W&r=3-sbepFHayIu66rp@A} z9n5E2Y|w}v!sZhC2)v+%gFEK9fTw1@j!4!?OI)yaf^-Ov#7klXmvm~* zw}(vS3=l@Qj)u4GP{ipIPKAeK1Yv1SgsdokLNm(MC&jq*1&Dn80cSJTrN-zLTI3C4 zn+t(Ulb};0e8yNlLWY41T8vc8eSGj+fcyo*O=R?#f%lk?O5bB1q%BM7^2t#k!dT&? zKG47Epg^cVUg4!oYI9txR$|lHnjDPUEHd~Ah`ijD#FZr;f3lfE%;o~q5HsU{In;!* z3#*@@Sm@*axOvS%6F<9iLXuXnOLfPOe2sclYUZg7Z>EZQKCzTkwwpM!4hVo7E`$(* zO)}(!idZ;YK%KK$np$s>f6MR*5IrRy8W6SZd9MmVf=`u$gM($%-B2JdZazPUcS_dm zVO;05ew&|CN1T>6r@J6blF8y>RrO!mqqjCo-gxW<7L*euvQMVdD<3BV)c1`NbZFiL!L!mZ>A`nl2M$o5V1M#- zANz%7Xe99|ABFJED+di*=~C7{LUH9iEE*dV{N}3tzf2xogG!aVxwdp{{DFo^6=~k? z8fEV5lUPGvL8zt9X-Ec0m5i2U&^C(1?XEJii`Dli?Dl1T^>sO$S z*87G7-I}TFWw>3LevKSgf9{2UaCYySf-YH!@|?BC8Ey}ze|zZ$MN602aOKrz&b`Vo z)>JWB$3~5G4S)T=)TSDfW7W8|7G0;-(_U}2Dd4uC9Z9G=_3GP#538#EQHuC0leJdg z4k^tCXkma*3?i$BhK5jR6){}##dCG}Bk&-fLCV5l21-Aw%a&j>L%u8PHN;7!L%N?N z!Ju_sE&#<}%r<5F#|Py+U0#q7^<%#qhPHw2Tn0RvA;H-J`2KRFW`fu}DuKWaSKMu; zjPtRAt<6ihOA}SySuNT)#MOHMgX7t=oFE&i9#L5i$Yn`GM@J`uK5N1}yTY8;AJPN= zX^sHaJ>qE(sIPG?5HW}iq7{uOBOrTX$(ri3@uOKZ6zU7(8lEfjn^HwZ!8cZ^`77j z&mOl*hMUM zUn~cZ$fv_(^DCaK2NF1lr}&s<-tt}oky>q1Z{ftwGBA$ zl+>h>M7#v_-rhe1Di;J(ksOnur6%G6zk4evU*hd`d8K)dXe(r)Xz-FQTDY5#s=v_qXplXOc2-|=bwf3|tJWd1{UWXHOIjo{-BjL*^ z!0`~cZvXvgxo26G-=tH$@PWrGYdEEVo}Z}x?5V2VQ~$G}vhXbxwWe2-)HdZkar@EZ z|6!~DkG9pCF*qOl;4JT&DLBl1-}%Yf#=}3jwN3d55w+^FIi2cX7UD2}+Qhm&;@iT> z`wy08-D1Jektn8#^60fIY7UX382-Zz{y%C-5b_fLGYe}}U0S(rg+|WY|EY6-4FIxE ze|BH}myEy6`kzL-Ce$lv!yy0vWU~L8^H{!{xb9b){jZq(=>>lB6v*GKO@`8$Ak34M z5U{`No`rhk-s4@wOKW~f`2fsu@46RwaAM!7zlQcL)$BEDz4f)Qjr;!mf3-w@Kdd^R zPH}78nfsdYt4&Q=cZAnHPsbILyRHDQ(Rx-lIrd2`bT21b&Gib~f;Ww}uA6{C+{ z2|=ccMaaERe*~O{5DWwsj>qBqBE-Bv)ipCHh+f%k?KG?WtUg%CN9}OuKo^O8_Cp43y5)Sh$ry%Sk60SSOpY(*@)=kV|_uJNU^ zN6n1W2#F7Ja{p-pa3de8{^N6evry0Op_eII-C7aZt&(aeGs*$WB=P)~VW2I%x9kzt zO<}czG%@Kyf5buF!XH;qc7^*(KTtZpzuwzk!;Q9^?3+5(7v6wsS#)?gS4gAQUPRjGVg$ffvQyB;(DTWy3>7Z*IsQ4RBy#v1sJn6t3KCV_3qSP31$7$gwnsYSU0q1w@Cj#zI7WQg%gxu=++ys zc>mX|`Ts#50(0=^>NaAh_)}P@5YNK|-8E`bc?_m{ZT!zOeT@QF`zQ#lK9fWg6br6- zy)YK9v-1D6!2SaVH1{MR5A2fx5W&8X+p7Q>AQPZQ((%VAAbiCQJ~|MT4nIdaDzo6R zS`1L~6Tl`nvM0iTt-HZ?*mgiM4z(zX<72X+ZHgi9tAX^?is)-b1SXUiC`UkP2&tDw zsN*c`^x`=Zug8AK75889rA6=S-Nm(&h+I*a3R2-B83DEhUxp==nbrL7y;0id_?zJh z5vjO*6thE^V5Dt8k?Q=DLyBoyq!e#K2|@)#M9of};As^y>13h&1W42i?FOij>(F_V zdW#kv_vxmOKoAJJAyGvsxu?iiwydl*85; zd5@DjmIX`b7q>Q7a;7o^izD0QFldXpmZjt#6cTfC@@Gf>qE$ z)nKt}za;ZVr&SmPK}fn}3HJsnl0iG|jr5}9AdL`^6&Z|kbVXjMlx$jF4H+Wflpq8* z_)CIQL%{UQfg>VMypoS)e5UpR)y<*YG>(vjU{kI5>QXLZ_D)bxPc`l^{^3^Tei0N6 zS#AH>3wJ@iOH9uDEvxXWoD3OA`0J_Qu zSd`Oi8&++%P2IC5^r1;JLeJ}LMA%-NmMfuj>zkS%oLk@e3sOrPe*OYX_TRiY1Gd&P z%6m(>V1wSKyfsV(Q89lt2dv0ibHcLrh5Z>t7*Wj2-+a+`wIgev(K>I`x*OoGb2>#< z_w&mj?E3KE7>IwbNovr0DT>?HrH8k^UVH1S(#o|iUWTFlxi5?m<*g6gf1@vh4fJy7 zfUI@`(MvZF;=U-U1j&|t8W!miM2O2R$EVOV;qKGFWxT1|38W7N46Q)6=(@YRJ6F+E z!^aHcIwz1r;NqHrZD&DMV`SL4en@RS@)Geqs=vT|H@c;kgKC&{2dmp}Q^PI1R=_ER zp4Gcj2qX|6Nb_Fq8ipjhKkL%h9X626D2J$@6_O5C?e7ulp;th7KtRDO3lLoyDsx0c zA}%LkD9K&~O1-*)SH;Q4Ugy3ML20j*cLDv|wi~+cpjwU`UbM>mc%6iT8eN-E1RHoQ zUo*aYw3kVS+WX&$)kiy-yWIhkGz1s@e4 z`)#5}Ibf=^`orX?1VJ@FRC}5YhM&Bov%1jo*{R#F8#0*QNM-~QHkC}0G-?-D{w^;5 zG&5c=td0&Vg1)s~knxRUW`*-kFHt&x;Dnki4O{9(x%BDxr z50@YvgzXs(cj9{>kSPlk>Rhm0X>7#lmPr^Kx@O=O6iupz95#);MPV>)O~_BCH5Yj>fpdVBq;xQ zP8DhN#)0w4+8DuOqw2qygR6k5JwAi$S0BD^@ZNvINBIief0ty6f;RLnq#?HX_JBc9 zJ0&Rz_xRxHa?rT%2M1t+3xO-CR0kkJ{*C(Ee19}6cv@o%SRs6nheN?qH(H4BpBO4W zTpyALwfklnWp$H_7ly_`+(rUIk_qgpy}Y|aHD5&;=;f3JKA}{&t_=d;N!t&qk`6iy z9(cs+;iMsozPP+d1LjSYX(the%sFMO0Lu01#;QWL5PcM}nwSA;-u=@sC+H*@k*I|!8fF{w~C9eo1*6Q{`I{axv`f~fSyq+!Wj%YTBNqbHG)3jAj&%X zwD(m25ly?iFpWDR>QV+sj3MCC#Czs3Pgou0sP1k6WF1o@?Lx?#hMqI5bSpjqFN`_S za7FbU_kAR->TZzc^@B2*(~h8CAm;-zhNigFS}>ncxMU;yLnh=b)#G zXh|UrMLOAsv(|AH^vfbB`<@G#GyO*_j^3bnW=G@w3Kl0dPi_qNm*eox`b~$(+V6G} zQP$q(16xQL7|brG&iHUEMpTc%e5b=^GNKeCmEg5yM>z^`HDw7DHf?Bt}<@&)9F*O*kpK6De#`G9 z60HNa;Gh6en6E;g|gC?UZASJgNmk@(U#i&?ph zJSa8%MCM8cxk}BuiwNkNeK;n^dVsZd>8wZ2w=w;o(WDKaE3v5o6p0Atjyx;nI33mS zWJ?uR0V&h@R?V8QDv|y4Zv(F_KtlP*4(8u3cTb}dCSR6|f>uz!(|Y9Df!on@Wv7vf zQ?1(p)yROw)_Dwejh@?^73&q`uNg|n?KA#gVrAvR-$ASZ!1I}N0GAlLWiDD1F=pm#J2jS1{l&FhY)Y;AFLLX)erA~-IJvgPr zp>&BOXP;w=q8FBbClPY>b}6Gd&FbbPluuUDL;j%W)$4aR!E5)q3Mepj6(Xy439R|# zqAh$$g^OF@;MD2h%VPg(nO-td5`cD1vCHu0P|9h+Qsagi_2+yj`8Mo6vC& z6xU)#A!7?wkyMq6`~LcYB|sgSE2Fg0Woo@hT`G4J#jAEc%w_tj9lMiAsRsg-JNGF;j1H#ABLd7m zA7s+Aoe;vmEAi#Z4ehqu5=a!5J6_Jz4U!5U6riO5FhHKi00|mVB@3J$@P(ciwJxn* zw$iUy&ZprvBF*BtlXOBa+_1X%2bZI+SMBaH1F} zL0Uts6+qHKL{)=7N%01aR>lo&7C5m1A!iEo1EcQ)L1q!R4uXX-GR6@05I=5JHal2| z@~6OF;`{{L&Y-#xe%NxHve>9oH&^W@wn64C zcDFyPxJUNz@X*jps6_pktdW!LgaXLB58{^=;5TNGPM$@PJ z0yGNHKaj$94M7v#Ai=Qu7^!P>tsp=j2h~v-LKkGpNi@i^tW87d6$17>zKSxMluv#JwY8Z2a3JR{9WWyn==pCHT4$OBq^73u(K-g7*g@jyMuk z0+xjHG2mnjvPRc}@;XesV(9H!4EqsbHxv=>W)kFrBY>KmmSNVIQ4QVtg)b9J&p~sI zb&={xV)!d4>9ie|kv0)dk}=wN8bDedFcIK42!uioSBPq3VbyMgT20l@Gbq_U=n{es zxlm)v#M{!;M2GW077%o9&Ff*|Em(cy;L%@Uu68`y!@`Ipw2HD9*pL%?xp^1>nDu%b z@(Ol%l8o|gP^0=IR0zt$ggGQ_&!mL|Rigb)M>!n_fFHRLhnSUDt5Hm3#%4}6s2b}A z$l$RSVU!-nZ%*2BGOgU7g$Xe3jY6<+epl-%k(M;uWo_5Jg^)o`cNvzWFUaV*P!gob zb(ZI0ZU}yo!ljpz71m}*;oxktwL2%O_M+QKRC+uOBYHln;V4CIOu{2#)dNNz9mFx$ zCscA6Qc-5O1Z40`N+>ZJzgHHNotD?XxY|xmgpaA(9)Q^p+hUG5(lNLGi{nt=NP+^6 z10an~&Uc5=hCxBDOx0w!P3rj8W~i;gdDg)pK&@8NS38WWP3F*JsCp_P7L(JhiD*qL zMStTK5iv8LjvzD@I1eE&0o~HOhv2lD?p}o2VLaNM=F#Q^6KL}0I0`USw*n{8vN`!Z z2*t^^XAzI&L=Wmj2*ts~wQrUHkNM@4h>b#$8J; zzoPIX;>v58554u1!eFez=+MkSie&wiFpjj>!6QDJ_8%oaLTv@A4ztMVbR35Rh^og| z3@ZHn;N+oUbokLV(2y7aHI7b8FnmIyhNpZg-**Rc6pd`>?4kaZ1jvmU4fm76{2yJ~K)AP#id(j24s?}x+O#8EscM?$?3@oViON zz|5Wtg>d~sHi#QvKKKn}>_~AUjEcN~L7{oB2oJa$@bbY~omQ+a6xPPyxP-r^gtwmu zp4McX4;UNuC17RzP{~TD>ojo9W#I1_kRlEUiE77HI3kQb;q`cT1;c9mV#0qvmmGGd zH?(pm5l#j(+TTx3s~PG)m%Yt>uLB;U@56_IE8=^{k+mhBKzNPJ52O^L5Z7nydXw?9 z7|PGzP@7JHFy zaZSJV9~ZdRcv?tv7b%tXcw6SQ3T`I~#T30$=gL-F&GV&j{!o*RzumYIwxD`&KfLSU z1W1Cr$Ob6Df9b-}$y-x}K{dI@)0-|i2f-OmzUt-%{v0Ru?3BQfpdV1a zc!uz*vSDQK%zZet?8=i|j3n1hsF%J)vAxcWY@d{#g`|*Yk&g~IKsb;}a z*cq3sAOb3XGy3i!jX5zBqp;Y8EF3zW%>p7x((dHI>V?reCGGxW6zmYOUN#b9SS0r- z*l;ta)X4A2S-ZbLxp;0DUmb*Sk{;@7f`Ppv7 zyhhH!aV_iir|EdbjIiALr%JkpH9qhRDy7{3BR0~mu#MN~MUa@7Q%ul5JnFBT_Mn?C zt{J<3y$OW_YcK!v4oDWR9b*{tj#EX44Xoo@g4Es#e?}k*vJR}AXgKVhKnej5-1w3| zmL1VtYvyp^2Z)!#DTcKE8;C}Q)^CC2@Y;!q13x$r?5+-2zXq$U+a#e?Q2zEir8Rf= zq-uHv_31Pn2GQQh|4OJ3h3-SWMlE}`c1>Y9nmM)g z=UxJMXoQ7(p@BBu1)u@l_yPo1865D%Xwa-lQ)cb*qZVOA=moEjOx?cOjfa>MQL=|^z1^_dgp$^# z=BIIHesI=${W&Te(69Br7e0US;H>fb7YUm=t>FX=P;LKUL`58xPuHgI*n_=&YxCdHnVO=b0Q~&`dqZHl zh2CXNkXwTU6$xA_y&L>wt#G%m6R156;LtZ5Dg#3M{DRmh_%v@+{FshTl6b8O3+XN? z`mm~V)j2PRH`^G>0El(N$vXZhghU+YKvR;6CKO&Liy46%w1K1LNN|XbJ{*6i9XF0< z3nv8qtFpqz%Y@VaomXARMRYCl@WO!T>E+|#p3BLU1tO<)9G%L;PDuPm_OJsOIUA^S zFGobHN-7_?XtEMI@Pph1$JdcFUj^x8h-$mq`2M>RRmj#Rc3cUaP|Yg~T@(xt`Ak10 z`Uw=k4`~ffUH4}`j3`%1AP8ZjkhW(fdqNou*+Ep))3kj0X6Qb25YQ4F@aG56vLJU9 zLRTL++n^i<^E25z!nyCcM3SDJijKR(M*@P1_FN1!C1ed9?D&aJrk7mL4e3yewVGpC)qWT$!k(+NrcXVsl>)iMrTFcq|N}!kh|pC>M$! zyLD$ly+tQ^3IQM!YJLOd%~kThWCX6cO75)Pr(j*qGPAm(6G-DwzUH=WNNBF;5kDskIh`b`!jp{$zL(V$1r%(T@Nraqu&AP2g{B*Xg z^DkQsJ_X!y)P{+gAGa`4rVV}WsLD(+0VRNG>fBl1H+Ay0isL+&k zcNPUUWbJTakwUO}kjLJzfVRkgUHaQD!kL4A8tzBA;a))-zJPzrpBBB6qRHBLr%~WP zjxXe7H=G8)K{JYOHZ1Rd=<5pC8noe1!SVjtysPVoVcja51nvCEcnccz`Ib+DYg%th zy-^^?0R$m7t_G-KyyjeGsP$IXCqZVL^2*u_yZ|5}zUJ$$CRrRK;_@B+9t5v9qpdo$ z^|P3&%4x5l6YJN2A3yvxig)8LAYn>Hb(9hJIZ$7DwS(rjx{x(D_aaCGm8w)#!dFx* z>Uk(x=(hgcFkrdXe^u|^cgOUpg&JZ9Vy=R>-DnKVg6H~kAzd?`dTexleeTW!=v$xE z%yLTXWoQU@-`$f;Sz5*GeN5K$!m6mWe0fp7YrVDR5eQ6atS=&EE2J9PXuHw%tJE)I z_w`Ay;i7r~G|?L!p+vADK@@ni{zfSHhF98~fQPO7yB?|=P`}u!oW0(ZntiiN>peu> zT5o`nx9bXVH$0~P1uU42ew*J!u3kBNClSY!e+JH6LZ>EqLq>rIv5v}Pi*V8jA7X!0 z(McY?tc=OHpa_wu8hz|zV_kmw^SAnNaxWBev!eg z?8Tj9?ISF*GGUjTZJFVeH9jb`8R#sSCF^))#lZ1C5xKyO;__6v*;1b>bp{z(05}io zH>#<-u6c`{`hwGsuZU!@A88Y?{r8U@6ByHW`tiU!=eV+#VH2vc={dgE)u4i|J{8BE zC=C7=M_y5}0z@#Vr68LtiDI(kFR4H>k`nVW-?UF|`S>NZB$osSoBh-2W`7^~PU<$l z*-_wFdp27$r}a`fq{obfB8eI~R_SmCFP27^ckk^~3wDc9bU-uf@_?ib92Zs&YKkK7 zmuLgg-+>LpTd<3GGHVu{Feh=`49=_dqvkC<3&)r%F$bN!fX)NFpk^HH?r1X)>(>v- z3_|sqfb&^XLqlQx2Qu=F^u`ZtO~^uY}id?Rdx|Kj3s9d(EF7e<`#Ts^oEJrMU>@8v;CweEq{h0<{mK3bWbXrY7x%gm{mCx>bWKe};%3e}>-PemwQdxDGW21)h#NLA zoX<{qn{wnXqUMGZ$U}1H;&o%V<~TMCF%0sCg@u?icAwG47eBpyEpXa!HUBtdc@NT_ zotMh~8$)Yx?0lK%pWc8Y$j6h$rf%KLqsdyUbhS4Dr2$sgaO3IVuYmMyLjNZKT}Mxk zp}O(diynu>7lsGO6P%omemL4Jmu8Sr`ttNP`9?h5GCACZ6@sA!WvTw4Cb_Kp<6(WqKZLTx^PpSl$ z2?Ij;V*Vv|S8P_I0;at^|3BW&GpxyNYu9#{N?C|>kfkUVnn;%t3q`tsfOMs|5PBz3 zQHnGLY0{J`y@%eUDkah(0V1JyFc1Ps$eCH|+xwh-uJ5|e_v`!wLX!7==Nxm)F~@U1 zE`xkFq0SLNaCi@ z+&laul2?oqq+D^-O1m~Fa5o6y?;lPaU?V-9Mh>g%;a+y%U|XX84!@2Ihfj0C)?~bF z$;*f3qCs7e#1$KPT&$TLwB0DW&hDYJbV0K;;_y{($NZ)y#uYD>*EP$ib$b9?rBurP zyZo|#jQoB*W2Q&`rS`;)i!D=?KBLgH5b;|`zpNKr=~B;Ed~1A$qkqiC<*O4MI@o++Ez-9N{hEzK^2dq&{1B+`LbQ6CGpzZa^ImAf|$jyP4^1wu5|K=!WyX-7~7i&AG0v0muv*L^RZiFejR6fSV zZ23cbH3I65>5{kF?i$V5sw|=Y<*zBwxqMx=yN+alXlC?vc3vB;( z*!|q@bHQB5*`T$(Fs_;cVxUTg4^>{+An6XD!n!dVglxJeN#3pGRi@tH@7jZ`a3{ju zzx%?gU7~7)WZjelsTTAZTQ|m+Sq(RyG||U2cmx*7`}?;$1;Qtj2J0NS;JEmFx1T@3 z4Vgx&cVsz91vNKliF8gPsLu%*OqJYz*p3NnVigYG(n(E-a8s|sqr$?7GmviO3{^3! zhx=Nh%P(y>A$ATzm<_uQdhlUv1}mJ2>lIJuP!pHNMfZ^?R2Z+ql$iHgjnl|R1FU07 z!Eo={OJ{m+cF-}`@ySUU#M(V*qQzxV>&KqyGGhMg73zCXfD75F%#cXM+GR{4Hq!## zJ0{ARdWE^%jt)j^00x$+W@^aw2vAXo6WyO&xJ0i4U?$f9;&&XA3XeWz0_c+1B?U9p z6T=|nFXeB`z@Z8gs64t&d(rQMQ|GYa8W;a5;ttb|^a)ouzMrr802He=ML`Qe`$2^8 zyJe#tS;DKcSB2}cXUVgnDuJtdnl(8brrq4buJAOktDy06bqO@${-x3qNK6zZ2TRTU zQsES))>w2fB3+1c#m*6IR~7aH+YjQrKXGSq9vuleQw+ov2s<-zRvoLOD8#QUCiO8D zGORO<*~gh^Rp}g@c$EQOG)va5N#*9d-TcOQE-iP7XU5Mx^4SulpnH?l5?0-%+}Nbp z(W)&)b~7E@ug>i@|6TrFG!wUlPPYPdjJsa$krQ8MV}4hpQQ69;O_){!${(E(Ctoo} zl2bHenjH3MFNTfVC`3vV2Se~w4v56SRE0m63&pgfSwt!o;xhhy2d<ro_>zdP(5W{hiex3SbSgL|u(g^3=) z%SP}Mv>Xj*f(i5NRGSsn%o>+U$`dl9XfJL_OyrpM#MG{UyKn|f6+LYwXM$EosM*yc zSZN5PzSqD%Yo#2qAtj^y5zn&6B%oUr1zDf0Su>55!i_+|r{;<%a+5XM5A

xcNAnF9|u5;luR`7$@-B ztko~&R4b<5Aod;Ij4)VW#UZ|FQ$Vvcpe;AfN>MNRnt^}K3ev|4ytEYji4@1g)yTH< zASNt}WC&{?HII>A-wDAZ%zfM=zxG`B;>7GW=BUQarAC3zjiyEr=gUIyp<6OCxrSt^ zn)R~W?wR@@^X%n;!%+EEs{sgKI_!{RC(TTy>uU(*w>O2Oe4JT`9QhTt1ZJEI302Qz z=b}?izlPbe>&V;GS}F;9=B0m5@c9masw<6*tAGRU^>am}O@Y{FD^4#<;=g~M->Bib zX!`w!0P4s?+KU!?H+#12<0#52T8>r0_(0+uHoCP_ax#lt<*Mj{Ssp6j@4*a;#NHdXP9;#2#!0|vESQ97A%?Btamc)O9sw) z4!*>8ywQed?jScyn>lt;Lek=c#xdX%xS#G#(7W8biz~LvDk%{L9~oblWb<}lT$#MI z)Oo;*Snb{^KDqDMSd5?8VOo-0XLoKv->_V6#XgnyPP=kLxiQef?P!47z-PPbP~dA! z$i-Ye8Z4XJ-q>hiQ3*VFU(oG+u;a}nX4erS;LQH$>`~n+QX+#3+;B()9zp$vwOXyG zaKcPhn^pKq$i{9*Uo~SQFR#Ha%5K!^d8%TMav(@VjbTTJX!-A0f$pELs0IErqcar! z4vHaI!fUa-mbe>8=f>i0e5oRNGoth0q?FtpB62!gm3X|De;O5mP;(r z{_sKz%7V(`HkaIaFzkI#;>=~YC&MQ}Pph;O2Dff20Ofpi*4$vP(MkS*5@yG#@JI@= zlbeL>a*WETWMZR;UKJJ+=55$BoD*B&!k$;RAg+Wlc6V~Bmohy%D;b#3YruPi4+||7 z8nD<&7O?!Cz$G;^wwAwi^~hJz?dVqw;)*xBuiB^;iE`k@nwra)bm#9*Y^t|;vaA2!BWS}8xD~`XwzJ-2Iwi7DoV+y`R`1y z=1JFP?ToPaPil_3ru(M;4(k=|41*H#wv=3m5vecooSOCk`Hn7yAo1H-%TUuzn#O1quYozs28ft0&pD(Rs6sLmg4+Z50( z^eEH-F<=gtv2ozER29|t-=7ZKpK+4TP+(l~&`CgQqqV-@?NuxqD&oEd#a5-QtzMO! z_Hbomqo>dMir+-t=~#tmvKP1*Y&vtjajlR-v@+&L({1Fq4hhZYG6 zh!u~d?4d)rCZd%Mu(ZA?LR0~(#$;}39f=_G5vJ_3LZAr>m=!T|Q0V70W*@TpRO)w_ zupewRD!U>f(0d3W-@!#maSr4?)9dSRkw}v)o|QL%x2NC$&S8_%4Z+bGvOP63LUV4b zl?~MlmiDPV&Zb0;a>lwv4LRkGYYm~Zq2>venxZ!xG>6d!{KqW<%Vz^SQDMq_%8C@y zmQ>(T%WlrH@qwR1Xa>{UDxM+2@|4W#xN+g(lCvx&@}`2w_lxR^07S8eqE>CN?V!S# zkB$~xrJe;Vn6! zgWma(qMR3{FmuSG$KmDFa&w3m)lUs89FcpabBp2*JG#&;NI5PSx|H_ua-s|DR>`i4 zJ6`dT(cv6aYey1$uHfU5z4KA1l@a>Igll_JlDGMgmZnF)kM!*vh`RvwC)7o2Cl?Z% zLVabH;9c}1MibE^H6GYqq>KLI)U0Qi;LW;pNe_QbF{i3BNy{eQEhnv0Mjob)sTSN2 zG~hSA{m;*6Bj@zxWE*94zSD+Bg1C0NftqYYKeL|A!V**yZ~ZK1Au%R=1wW!|y7D_U zy~gi%i7vXlc&e`W<3$G#|CwDefEnaep!Qoi=4CJ`RWubHEVb|;l&cDO;DEBYXs}br zA{-?f5E%*6C-0l1J%_{GPps7~Rj55b&hzvA6((@7vP~jSdGIyk)9Ofdh8DbHy{b70 zgec>RFhW#8NUaoBs-WsGlCsC)^o|Zm83<12ZNsr<7pYQrEvIc#=yQ&LUW6il+jh2S zH{qX-?uh~IgRlK!--P$C)@8KuMb_s!eyjPp1z%*Yli2vczE*GlB&{;t^F5NIoRs6! z*{sLcCGYN|Seg9(*a%Y7U@DvFGymp;sO|5hXU*e9gn{a@ccS^{3xUVrOC^WGV$SHK z#EV8I&P>&x%TE->aXhPwH9pnzy|7d{CZ8UAGy=ODN_cS0QTN{CR&;NP*{CkV`?My) zJ0SQAQ{hd63eV#}D;2F2Y&}m=khh9y=hK>$&m12dRWUgE*=oW$#|ZicW>~{?qHG(8 z>p*>@r$>+3JiKj9nH+?z&Kz$GtpV!#s$fk+bQN)b#ivl9tX?CP-OFc&12ko-$Q@YA zDxH0j0tynK0`eE%g7=5tyduXuSz7T_-{YU>E{AVV4x+ktlZUxVc|q^9CTOWWU6shJ752=nGwg`MHxnr4 z_~6#3i|#-dw{Y{#vAU!?SL$a15Q4+{r&;f-jKPxO<<>RVt#DQ0JGdmaxj6wz?hz{- zFe!@!Z!!RCr=W3sgNOg8PR^;rBvB@xDW>xE3LW*6Q_P?m0jfFg!#Nn`*;`tE*n{`9#} zowefDjLwB00RI8XQWbZPC9_k0@kA{pPP#^TN1c92s9t%OV$iRAs;7%y3M3X<09&Y7 z3{=ZNISEQtFE!*aH7aC(OxTTaliT;8O_~9rC-0x}DEm>#bi6{3Z`82=UnPHQTy*o^ zPXBQxHVaq#4%?90lb+TK!G2Z13jk~YBSe(tj)<9zbf3@YBWWtgf8Lzp($0G;`u-oS zT>>tqWLfubJ?vtB8pHH){7QmNo*ien6a(=o8*G2wryqP+>kGu*Jso;5sj6`46IYJW zQid@j@3aCeAVb9ELxfG2>M_#0b5}rLAP*2>RAcwxMpA1OAlYtHA>m~ zMsn{P>{Nf_7l01U%pQCHYWHndA#bB`6%)K->qd&pgk45h4c5h8Dnn8zQzeE#$Gm*A zD>A%xZ!82~+QjPCC#oaR*J@0IYgs@4?V}xCZm85)WxT%}wA~X%?`U_E{}}#8^+)XX zH~LCO_m<^M!ufN{JwxkF_4Q%8`HPFy37|9ELAMw9VBTj)_rL3}9WimZm(LV*Smh&r z%-ZwXH`cRtCj}h=xlh#1vO^3d-iIq}V|_SkNITW)X-#QT7xh>PQ!q=2%rP)6Z)!jO z*U5$CFjO>La@B5xHZ_=<{FR&=pd+8$FT5}tsrI?q_iFd*{WDrb+|b}wb{KW$D3ri( z`lZIMNv?(9C^SDw(#p7zI1?d+b@)B6#KU^OU*}b|Z`r+L8_tJ)D?95ADApyZO~U}J z{qZ}9Azs~ulL2JdF0}v#`E$VBe=8^Ho|U8E zB=kFQo~%a8av!_PH9v#nF7gyF15&pn88KYG?W39FXmnwz+)Dn+?&~M!AIEJ4CNa@A1JBf^Z_0AS-ZW;k9C+|lGPi4UOSHfmkq`2X} z9XcvXp5?NPf+ynR(^Dj_jX9Omijp(ru9NoKK)!eQ$RdJXjcMznGLrUea^+4sjdbXU zx*XQ#a_R1|v}U>wsWQoKPQ33yyZ3&T2&omh47N<@VL;5>)nb~qRs1LkB_{A3`!N*Q z;gw)^!<_PK)OW633fzs)S;kgTA;S;ODhb_2wZ?+O+0o7YpWM-8BBvh~}Sx2`*Xy*m9fdPpZ{wLwt>?Yi;IJq|6ulWq5x2Y z;xO3giJ<*31UW0{^+_5c?^bM)O~XAlGfy3w2o`j1F@b`+84#rLc{EaK!fpU{rhi9* zRea~CC8>g-8H08Ak2ech8prP!vOLrKbiE9a>7}XUFxjn0-|aTSIfk!64x6J^F-jWA z7pv94GrQ6|S_e9=aR6K&4S=Y8G`pk;VDo25Ypeu^)is?Y2+@i2?K2%At;@3;qDks0>5vC_1=KIw^xv;3G1~IM}+ArI0ZwZA?&}kcE6mi`8_-kPVFq>J$@N3vh2aQN-s61R9&O0o(>QdB58FN*T zhxs2>TylCRql(D~Eu5l`PumZ66^2O37?jU~q^V7p4N0;+ZoN~S^_xb!betX7ZXT0LB%Zxt#z*H~3{A8!?O60WrUJJQ^N zKBPsO@=iw+@u~Olr73to2Y-q<AXZ-PP2N4sGTztZ{YR=GWkb_3TX6Bb?;O!-+CWn@k1rG+NQDG zcvxht-<+GPMPUokdC;=n9RFY;dup1 z6!HeFQ>w&?81gI9N-C@Y>41J=?EkHbxD?LFwzP#U(oQAx#~8{J>{@*Jkpa20Y@;(R zGYb5Bj)&Sg)ZncyMiIYqX=+6KSU8u$=x#8iQ)0e%pJge-EFhnV-j^!%pV^}BbWY&E zfQt(yd#?F9<>aQNL(>ob8lWmY8vV6EDrQRLeM0G-&1L3&XLDnu+eBbD?9sqv?kchr zXxO;rh{ZVaxE4k*-K=JX?Uz4HD^eZhe|4y|_Z&uqE8~;9TY0(-;&9fge5~iYXuitQ z1SyjT+^RB@kZwcj;C9sJel+&xCMI(wk#c@ZI|>n)_oaHjq&Oi)EE-d`TF#cf@9BJC z*{;>G$+pElTrWwvJ7L#@*_jqF7ap*1?Wo^b(yW()57dvLB4uNmT531G?*(*AwV0SC zdoFIJ$7s_-CtloJw!?Ha1bu?P*dopcxDiS-1O})_l@y!^X}8#aU8o!Kr#f7kZ{}H! z9rw;$aiNRsN`WD+wSm){p(XH;bqB|(E)G9}9HHOT67%R=YN=?%D6yYyJl}tPG*6zh zutoNIm+<6u0(F6)U&G@yoU)UX63VjF5`^oX`=I&B+ZN(6-a{OFv;~f+GQ6jkGU17b zN=IT@LjU0+1U!7WO3U2jh-1NS#Hi42cli{`j(p?FI`4r0RY_kDON}j4wv59^l|fl; zv{3<_kh+I2rDz1LYO$uHO%GxsfZMnYpyuEqw3uOA9 z^3!!LC}sVuTia=RlCt6YxRkK$XNyrQnB2;jWwB-jWnnB|v#-lu^Pt;!6RSldrFcRt z4YBjh7Zf{A_13rZci9A|+xteF8Ae|?f;AO%o4Xxal@mE&M-Ahn;Cweq4HqG5bJD$zI6E#?;J^MB5^xV0_~ixGz7*@iyQRU2t)+@R z@4>jO76oPDqn}9~Rjca_<>7ae-Np^Uzor|P`UK96*piglAiNp=o@32}ewdDiUWw~( zkcibL>3u_RJqS71ej>iv>8U&cOB)11U=Wz**paa@H7--#T5f5+dxbl7RLONNdh+bz zj%7>k{CG%dR1B7y{Q|oTYbfPxQOE}0+)dpxoC4Pe_k6w|)+H(>vCb8=)DhF&&O%Zy zj6AwiBI{-E2H*A;=!j{qc;ME|J&wk5vZgem-;>b`F|tbedS-j@QT}u+z!0}75<4EaWrey z*-RaQCL}|#h;)SVN41@UV!JMXff9BvF+TY3ylKk^PvKp+=Nw^HdC^dATsj6tHART@ zYdc>!ybK~c&6A8qpBIoIv0gWW&%O=mQ1^hfP`o4dwa07bftW4&ALt#8P1^LyFj(+m zzN7Pl>AfFj<(SaQW}EP^&>4SeWz^x-t40n6u@FD#`kJUUaZNu)+oJVa-0F?aAU@8E zqM~aNiF~&&5@VVuzH;MFY>d7ZE^l%xz!m8@X5PQQoq~SULq--)DlJ(b(S#La|XX}1e1l<4hnU@+ukIB{tuE7%~HyJ)4nx2ayV^d=V^p;1iy=FpTIW8X+_6WDP! zjxll?g8DCbL}qOGbw70mHA97qe7DEklixv!UA0n{J=?3^?>H(ID&y85sT+QbCB#6; z5rKI}Q3fk{E3?^>t6AcOH64e-TFSgpZXY^iPb?2bXl&3AY|h}IIFCwl*Ex68*rp-A z7-smwF5B%_ccLQSKKMV~`;b#OnaQkZ{ zp$#tm$Y#Ii9l@d{ncH7som+c`5MLp1Z^kUeov3&9-}fV7;`#pA<@k3&S)1`B<++gV z_p|Lw{#bh|_)VTNgop8Ihio%W`;87WHu_3?A=NfXd~N@*4`^iqW;O%}h;%M|;ON$# zz5skF=3u*N^0F+_ovV58xrQo9xpIbD-%p4Np+n^CxF;HIRaOUO4YD}x_w=Y(`F1YM z=#!LTUGHaM1Jlie*rif$kN7(GumW=ddFKmd^gr_(04eJs7Q#E~Fe-dRYPd za^xL}Ndt2c4p*jA_3H>Rwd~kV=sxVLdKN5Qc3A^ppU_t;L*_i2FYt=APc7^+pv73ZyZr)0^B*;39OhH~Y6ow{I~J z9Y;h)KYlcEDNeK`lBmK1yk)3?@{N*F{hM2I#KL9qAmv?C=-XOH>LVOb?MDOBrZ}y& zc}=T9K4jkyS&N+{Q7tsgb5^+WW=iQ|X4|Resn`WQlWqyprs-be@X>xZyMni+hKYZ8 z?P6;w=##J=zarWg&@LsEx9;;K(5or8AlV$&!q#rlSRvgqiR6uOVwlR3&WKIDg}hA3 z2%qKaR?PRv1OLoiknS^T!y7R>yag2OHrV4klR^q(z9!@6;;e{sEihk7OexDax9|N? zE5m^OL-r%fb`hew0=_zFu<%xJ^+W8EC6S1EhqsuptC{f2%Y|LkGo_N2jLLzLqso?q zVYm~6T=uHpcm_Fxz4>9g$m93W?&<*pGgUc8cW3k3EwtK~uvl z<$LQJ$$9KY1d?c0z&Nwl$UFpVVi$y)htg}~a*1TFq#Z~5^%DuZeh(!$k_twq*CL$zI) z#<|O!My=FQ7Od^vkr9X2{ktU20@l9?)||0xdw?EmpHYiF?luyli7nY<7n2Nu`1tLT z=kqKZ^t20wgDn&xV(8faFrBRHs>X-Pc85s0uyZ+AJQ&^DSxoSq6A=w0Ht4LHvVo^; zISMT#_{oK6x8zAfT*13P2YZ=BRo<@cZcb%bQMt|ql5$pQ%&Zew>nS@gK_0YV5FmN9 zzi1Ib$p|J)3VBcY8AQwp!lw5lu7+2Sa0;N1u&SAP6D#6*`cWYWhT4-bEJ}N2h;(Orr4U3C*>_y% z5DOxm2gNnmYb7$S`{1B6VBrV5!fF%iew4u)#hy+?;@YWbj86*@mkUBwy5oeDvE8uO z+^3WKh5qaBvW{5WEgUAK>YZCkJL5#;Kz5{82lHH3$cWa4VO{6HXS*CmvLCgUaw7N8 zg|zz(rrR0_#qlYGs9b^rTFRI(X=p`k09g^RethIS)KVX7x1Pn;`KAh1g{z=FTZv7p zyxK8=Y3BAs$FCLlJgAQ>ah#e^XZ0r0+aWD8Ww0vBKuWj7Sp&m`kLfLPAu$|W!vUZH zib2jLnxw2^u+HU$fH~742)}XU5EHl{xX$~uTxh5P!rLAyVT~%$A|0_57YURSpVDRg z#^T62q)m>KNQZ)#YjQTmbcp%P5K=K#3e2C+1xbfNt{!w2O|$ANSoorV4z^*1Yj0r; zek-J9e0zV`jxZ^MoGCuQYPUq5vzm$74I5vxJh; zMnr7I%i?KX&<**rQzb#@O@7nXf2XsEQn@Y%8bmF@y9n4CU8ji^Y2F~9V`!;cfway{ zBmUCy+!H_A4uw?VWoaGUpZS^p)fxIXMaA+@(!Zq^p9%j+Ed>Aep9B*9zj1IhYh@8y z&noVZH^3ItO}3e)AwK3P3FMD7AEEr~GzEt9cn~mR5z(UkX(VCY_HVz1`~OG>j{TQN z`u^D84dKUnK*5*xI-`GDL;w0ONwf7oGQR(9==FEY<^R`z_Hx)d=Kh4%3khtQu)?Ll z+<-UkhPJSIi_>_?hkrbH|1V?Re`!tsdAk2$KMRfl-3M|~gOd#}K4TIE#D5$ZRwSg) zP1?mvqy^LX0ZRvNUO5MvL8I?MUerbF%+AkAcn5@Jz>oRXh2&T}fJ%y)X$nvg{+s*% zKZ5`N?fwhwZgmfDT`x5-^BP?qahSPboZqSz+zOce09@VF)P9pyu7=Ti;D2mru+cFl zJ6yXcfjr1>y#0S$ubnHR10r2{n!XK(P5qyXh5vSu9=%-7@i+bA{@ByMht2zcw4(pr zlkYp*t#E8PiA=V8f#*o^L2}&h{_9osdwC#}6?Gi>+S3mll2~YhUNA$2+~Yv`4}~~l z22KAKkz7*3z(3B&^v9F75Ssr7YAp z#eyDu)%Rv4ja*{O68`ZlIR?k>Z{(AaBKUtM;+?9mGN zrXCHj%GB|@;3bsE>qsN0b7_ZUVbn%E@c_6{ERbbr-vIBwSl{nHZT_8RCxiyP6SWM$ zPFJUK-qdNW-6a{I%dnwKKN<=c9>P4JUY7#|;1%L-xDG)}b+;fKbH>dLP`Aqgiu9aa zfQqzXHXLwDwsHms*FS)B2p%}YUSS8)bpV<5z8wU7*o2yZ1TF`FYQ9tfAJUHs_+->a znmXG%!U=HAbB>=p^Ram+3igraRzudM?B+qtfG(|AO#`q@ zKmCwSI@qKlGEfS69y2?B1C;|ZYovqiF_|sQL6cLd9V5-l56IGkX*{(-q?=<3U}=^C zTFV(QUm0C$XG4Ag6R67L!(c4Rg)x7J-qKHb%6qcfX!7SVgRt5z>%>yyYR9(N>*^P` zGy%ZZezZW}6(9*ZawCpcS$4i_OO^46^)3%9LAp%eTdQ|(vn@0zK3`x^%t;&AJC{rM z)+fcl`CO3Y@bx;O9EZ47fR3*=a>4YD=SucM0}jwtR20-KmZDJ*qw1oaFB#`3(hUe= z7pq`c1$ID-#8uO<>-IB^em?<>;Tc;N7C{Yi1!l2mrN%ihp3B=Z!H&N(7uuU3hgTGC)Mx2as6SK=@#7 zf%jtj)IU~a6qj8HZiX$GZ5joMH1Jy+kgT#S0v4J$Saf_0ocY1UJA#Y%8*Xh6^e**8*bBDG@-E~~%nMSCBRfA&Xmh^=qE zhnn4wDidiYegk#w8#~4^m*r_j<+cFPV$Ul0?9T|KTKw%~FmHd36dH=`a4JZ-Oi5R| z&OXEgWp0-)*JF1RwNd`j?)y*!Z}FG<3^%zakx&!NXKZ97U*ZP@jWd%0hEfDi|r7n1Alle~geMDOh?P7{oO>t_xL$B#imKO#%YN}9RN>_-@%o}#MJ~Ns{cp4 zK=C6*rn-!~Ht$x3aw2$4CynNjX&}gT(ipeiu{5?sGI$0kN7v8c-+3C8K>{ZB*0$29 z(l!}5YZ+tcF3U}jiE}ZzU;|F@=Hge?2mzX3ec2wF0>e@laI|Jm8qN5VP3>RLIf0jO zqS^>P@!#CYiWZ=m(f~7pi)$HtOiDFx^T0z-5TcMAN`ksP)sCYTXwdDSVclJJ<*Nz? z{QQF^Me}x3u>bj2%EDlkgWm909X=<+M2EAQpTx_d8p=Gcmda*jZajald5?m>7CVDEcF@8Q|e2F{;uQJd&v@3ylOoVT^ss_6xW-o+p5%leC|K zIGSX&0YIwW*I;Du?*swdt@aaO1N934R{uEPX}d|@q#;?W9ESPba??sLoq~>h{U9_J zmHlPFUU|O zh~{tHnzX&Ru|QKf1q038nG39fW%u&4JOKF)gEk@Vf#)3zx(d(I1m0zE%3%kpKLY}p z0JM#Dlu{>O*A{rVhQ1yCv3Tt9(=F!2{yH?^RF^*G}sB=0JBdiH=^)O-R4l} zfHwe;0!>aW&?q`D^+M&q_^3QdbI^7?yLc1!_=98RK$`4Xpn5Drc(*`mrfA{jMK1sx zcgj=@B=EDYY8SUDLiM&v^AzoK)*8T#k(I|Zg^#>7x^!&)!7*Bj~B@3fk~S^;P2_>E|$ zc#>b*a&Ci`lt$R<-P%f055wyST>W$rFrl0fxWfZdBG<2 zp_Mgo08qy^u+!04;B0Q~^Sc(#H34-PD@v|rNjvZDVJJzPu4DZD-Q3{rl(YRk)X>zW zP~m(y|73SIGS50iwTewTfQBUlF^oR;?!{MsaUM?wweK<8Vy0hnTR@MgIza>hT>D4a zA0}L!wfg7mGH?X=nXMZ4{Kv;zge~dID}FRA^Bq84a9?xxzbgaq@dw(4P9PGimd083pX_jX z9bBcP`^OEy6`QZ@Pc2Rg%$@^ZuS`}D*r@B__J2XVx0B|FK1fe!rT{DUZ6GOJ@cJj9 z1!_80P9gufMV~1M_;T#Joo!?|qgyYb1Xakr3saN#>W+^>U0hL~M6Ma`Qx=(I}qvTUnO15G&W?Utd&u5$nSzgNPY&&LHBbw8+L zt@3D~kjMTp4baziZyUVly>5?MXkbYC zLl|)bI`d#qedx$`AeG}&iD?VSJiN{l%Oa{9Z zlPAzynjl}rSLgS;W6b}ZSyB)#YyUAS4$#s=i)_BOSH8O;KS?<8vvyv3!S57x>`U-{ z&R6Uw?*3^@FPs;ZRXgz=roI}q!(DIXJ#v<>@Xg_KhUmAk#}_KrzYQ&V>Z}b^CzJM9 zc)#w=fq?khTl` zwySFksXRZM^f$V4tIWE9skJKGGwLeP|EGUhs?!I&u~&92Emn5SH$eBe5|d-=8m4^xxMh((+nvafP^U- z%#Z!ooQ>qc3hchgcr@vEwGw2* zWjxk(EHBe;a7TuQGK@`k;2ukrUs!YYESZS3I^oG+@6q5z!|_&60@7o3R5XC21*9NE zA~7rz)%Xu13Az-G3fdyOzd>7M%V~=&3Aj(9t{pxTK1jZlqKZspe1!%8lzv;KCsv`j z?<4f>A>1vVlW&q8p>EmUg!M_)wv;j&51_ce=dUXhDw5}+-w_kzqu;-0N71ng8*Imz zy=|jye=7H+`NM?KcmQ;(F8$#5@UQBxf3Zrydw!lLc|Z8~HZqy+yzon<|CENQ^^&WD;+*`Y1;{YCN6EnTz?4BC?SqFoJ z7E4keUpjt&^{5v8{Ke?-1IFVwu(o8(NOQaG?rHAh^M9KKUriL-nqmf0x;FKLuZ!Rwx z-voOaXK0sxjfSb7QFEZ*HdtvUw)P%Cyw01>r>L?riY~>szm%j^Sl72u(dG@_8?iGn zg+e)`WN}(C06q!gN*$CIS6Tu!GXKtdL0$s#-qZG(16*vEYBP7?-ltS9<@bJE9R}dp zN`kwW^Rrr{^W@MWVq#l{w%u!~VN`)Qz#vYsrxhgHz6va&-DkhOmHcy=tx<$=ggr}B z8ouy4qPf59+$+?`1zza_FTklsqaO+X0dT-lCJllbwffO^e~otIoYhz0AXT~#<4d8J8uEdFzt2r74t_fwOT?<%$P-A&*P;5N87QA9wccpdu(`;r_e#VOD zY-IKY*4X}+ufjt=nDE^5TD68D{m&}*PS!F@LL6`Cp1;c~0 z?={^Pb5H<93rGN%VLlrR|GpXfq7Lwc3zBiRA|(}hw)93XmS^j%2iGwXFFBRs^)lW9 ze~_Nb5gt;o*BAQUoHKHtDtb(E)%bz(y%rq4ekpWVBZ?Q^RpU@U_u1wZpVlcBS`XyJ zF{ZZ1d2K-o7C{ZtJf|L=i)9wvUpw>m9DEoQHMj)%!el|6wj;o;I>!?dw@9li(BJ-a zVh)5uslByvsYEmHEwFr81dFj4sD7Bn_Uq>B=DY)Y)u@B*cE)}%>NP;gNb_l5n(R2O3(xjf>#IfZ z7b#kTh-(ruL0UHnd9=JfZQa3GhDxDruz{ z@XfnZ0j|{+44%LD>J^4yTdDz;2xiC}Iq=~30>P&Z&Tv$G=Kz#A`)PD3585Wb#H`^H zXe{jo+wqX>vn2Qix>|FtD=IEs4<2Gy36P45paLQRkQmil)nK8zq#4C2aTgqD)zq!z zrZ~&GOq8|B0jqUY$vJ_b$G0;Ae}_+kop9U?=*ykfc(&bu=WPi9#Trep+3W*$7(xIzX0ZcY*&sY< z$o&+jb?-aPn*>nLqQe!n!46$BQP^xfgGAVH0(=;4F*lqd=}#i|EU5QOfOsGl139X7 z7%xei1hpUyfD(QL8f6N zLaiLNt#c6J{Xe4VvfU6Znx1l2iDZ94z#*554Y~r5uO6~ePVwml zqZZz_;($@rI<5&YyB29{P#a7^EUjPCWy&5@3aq`R!77pqEMX+WSmK+uGn67&lK~Y6 z4QFkZ@?L-DRC@XXYsXLmC@N*r)=QN?&eQ2`0-J`9(kLzT-KEE}KAWje-^6+hf`qj} zQ;H!tQ+LV_m7}ZI`Vp6X$y~kopf!0Ez*_s#zc&Hw+oM7KRHQW2Ak{W;vA_7r)UmcY zEXZADb`)G0h@di5_4ZMFm647s<>t80$^6t*vD~khPw$gcoHOlvGs7?_cUmw@fDqpG z+Lnm?7(sQ}RN_24SFD72T5hIv4pQ0j1WJxFPE0CI2VPq8FiMsD9+W&HqnwJ5#4T31 zO%~Pq6}|B@s?Yj3V9xE9wM_(=-QmmSO<*bq(@H7kUcBB+2O4N|P$demM!78}+noVe zymEHNIsXtpWwj-vPZUbRcQtV@rMf=d%9M)AZ&M=F1bD1Y@D z%?5fX8jOp~M40-z!0W`~|jOf^m}7$~IVhNBo}?p<5|T{%sNyE%dC#o1BNXF(^WnRuDX+mxKD%GC z&Z#FNSWRLx;-4CFD;NwZ@L?q5(1|*zS55^H!z?Nm2D;EmBu4~)$(Gi2mlWEoP}k99 z+?4JiHFo)37In#IsovKR(@B|eBRzAdvcaHkUeg-fA3+GX@CxK3rOA<R#C=bxT-=yv{h zX3)#yuJE#RG=4q%Nl&C1vo{OR`aIKzM!+j#u8D9hJXY$Kb1j%F?aJFnb?&j@kDkfx zjp!ktbH+)Pgc4xZFIv6o1H0XM#2A032W)cCfXoC)2{Qx!OiHX{FS4KgWo_n!rZ+|P z9J8~yM|&`)A1|8>(0!9>Nwm`BOl`->4YntJA;LbD17KYNPruF7rL@)Dl*_CI9we*E zh@sY1Bz|WhNS}c0|5(QoM-NrNWR^MfbfP3kTp~bgK z=JSX2)O#DXQ1E&;B74I->+zqk8TVeH@XUO-ed_hm_>H3sB+U~KD#?piuf>q970u*A^+~cb#>T%+7Dr(j^4676^KI8YB})NOG%=^GUp$t zruTwiaSbk6^!aYeYX1AC@0G2_om;)BF--SYhjP?iflI?#upFqm0xjwpT50J+;#tL< zh?g9bS(hSiH2lfS10rltI?buL0~PY+!gA$`%DJ)n<`WHp;JmN=(8$5lX1Mz$HZFyf zBoZ67{(0FyRZ<|T#2KS;TZXIE@}g?hhcnk~VjK?@Im3NPqg20_tRm*AL{g?wg!7HL zl33627c^e{m+4FQL%V;e{KTLK9vfvl=yg!o0H;Nq^p#mVhV}K zIiDQLAHKxeSMRjSzoO=5yKOZbO}j6K3iF?sh;Z_!wEhA(_PBeAzgzFOUOPqQm2ydK zI>-b|m8Aa2mWCb$;s_BaEOC}gwAm2LL?+KS_tDQ-KQ1%T+-|2Y5q_Tn4Tx7U8Ihbb z;PYOYm~8KFz9H&NO7-DU~}Flhj0g!x0KZrScC?=D#eb za-lN(9soeaUv0yUvN5W*X-7S)6^ z_^@0AR`4evNv4&%j7F<%`#DKIC+tsM>N#{LTqX8xq(<_+Xj|Hb;cnQ^J5}2D$G+}4 z6RP}1%0;@$bRr|jz8P7qp~Wk z7s>(xKx+y5t)p8*n9d#*ybDX@?5WdJAmLjIE}d}B-wr4%xsnz7%VxrBMy;^FUv?^UGSvCwoxhTN_eKpd_pFJ3G}BxPJ4l;; z&l}awavJqnRe~($&7z&n-~#!M*>=0lmA7rQf;GjJfiiAu5IPSx1sw zBv@ZDYb9K!EZ=!VA>DwUXI|fRdIXjto56UYl!X&uHlAP&Ji~`tb#L?0RVa>5~wW`8AmLLg)s^LL0nWn=Qj0cU3)@Kn8=x^8b*@6XvPi&~3VLS=d zA?Bm*c&|@H>foil-iDV(9sdyisU^(v#kb9453)TK7wlfFp69AMu zT3P1#R<(dC=9*Oq;xgd?C(R-o>$3En*Rygu5lpwFY~=L^u=CFD)^Gn;cW3_1*1CuB z4u?|hxvlZEkq%lhJEjJ$7HuP9j^QW~^Gs5SpgO7Gs-dBjB3eoe31W&=;f;so7*Zb z4AZmK7s0PS;X&PSB`eMeCt)bfJbb-HLRxDl3jC!y_VdQz#0Z|L0 zZ!Rmu)bdTyiUwa=vZgx%OBa|zpn4(i;SV6rB1axQpptA8ntPiEq>59D0>^9le|;XQ z1vslcT&0q!m}d@?wZLO{qmih6gMTGxlPWDTv4S!akA<3Nh4b(=o1a@}lqNW*b{7@A$=jicid zwj`F0ixq7!+k~uI?yf5DEaCH72CwII7QOvw%B~sW0 z2g`3PTB(g%H4V(SO=MR|cTAI3sSkSM^n|k($OnzioVqRIf7)e-T^e&>*L#nk#h7L$ z&cB6}ZH!)Z8s;|dYo@)L+REM}Z^rh+yhTFKD0S}5W+4JdnBxB^wp$+i)PMnLy8{l-jPO0oHTY&EI%t5JOGuW&z4g7V%Ft(P_FO-7xx z7Pb5hR-|pP2EQ?N z`%Inck8(!+`mi2L>UCx^-@jl};gH8KVNhA5*U-p(Z0IX{cpFhvpj9VN-Kp){Q#Dj2 zVSmCdz0iK(F0tLE)Mu(AbE~}~iLDO^KV053-*oDy9Xs(9i#OL7d8p81Yp!iD^81BT zYaW!a_(*#j2D^ZyKYBgh9S5RT(rRpFSI#+kFRb{3RwpGqp&;nyZ&t)zd7t*+q3Fj& zl3011HGH8|2ziY-LE(9LiVehtI;|5{qGY*5X!TCj7uSijJE8?!w>0=3NPWA>sO7^F zN~b3kYnyL(tTznqtCH+$73IqV>cd$MJ9Ks+S65+H&Wsia4npf`#8$^!)Qv3Bt5v2U z2v^Yqah%%YSjT|6M+sK_O@x;kudt!Ujs!t}kybn3&vdZ0+LN+XHE#Kb#C*s3dxeK( zktY_FX0(@W>wNlKtF3Fo`kQujf7XY!VmTczbR`86bv7O*?3?{P`>>5p)0pq$>fl&;Y)aE>NjTL6sdbckLHfF=NL7 z78q^TzJR+a1|8abLG?5R?5Aqy67cvi7uE@;5x_d;Xy20?dQ;110ga#wLQHZ%+lrDN zkQU}%_a~5br?#VjfD2XW^yF$C2Z+kNDIQhK3IoF?TLZ#O=Q0S(gBvaaF<5ZtYt z=sW4;2*V}ou568RLUCJ>K)}lZzI8VUf@}FM1IV8zK)vKlziVuqQTB9UU>-A90mUQ! z4$^w*o|r&udSO?dUdj0aDDmx4|Cp2$E*P zDbbe-1C?&?DEyu%?lpac&`^!0pA)F=E#cj?=!n2$}+hpRxp=l&IW()*^rI+H^}~ns0f%?SBi;D8ry0n}jya5>kpbI}%9o(}?_1 zDXw-AE8i!~IvS%Kqk_CB=Hv+O;27PS$CYmU(;ho;gl3Y|fQJ1_3sga2(zITjjJ?%< zc6rq9C74rFZSv&0(Znl2ROAa~&M04X+0|AI+U&lRj^;_*)=8aOCXDw3?kfhsP5t=W zzM;{_95ARh;*7R!f6TGF_nxY%W8YJD5bQ!GyE5kQB9BVXk3KWuLExVhGhIIl5?=`g z8=!R)oDH`h<~N>Iwt_4kA&m0tz`|X#dRv2*uQQw=3Mnhvv!3L)j56=d-aBM( zBeaB7*rYnB1Bnf@7f<{!z6nS!w!8lT@@pbF`X0%s|32ZIbRNyJKn+g|w8Q=t0M5l( zGhLcEPO*6nxVowh3AFH7&Tu9}WtoL~E$>7HnYQ@d4^*oFO(z6eFvqKXrfh(TV2fcY9o~&HGg5lZGsn6AKi7zP!@`I6AtW3>ba^ zlp8Z9;kjKnJzE1hyd^La#xfuM`%8a+^=|H7ccuTVX#2f5WNW?9|9(W# y4DG+e94(3X@9W?l;i~^xL`(MlUw%L{ZT09W+K-;zLZhGgZzzP-Mdo>T^1lF5&FFpr literal 0 HcmV?d00001 diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.html b/flexmeasures_s2/profile_steering/tests/profiling_results.html new file mode 100644 index 0000000..78abb64 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/profiling_results.html @@ -0,0 +1,33 @@ + + + + + + +

+ + + + + + + + \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py index a509a94..ce76837 100644 --- a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -45,9 +45,15 @@ D = 10 # number of devices B = 20 # number of buckets S = 10 # number of stratification layers -T = 160 # number of time steps -TIMESTEP_DURATION = 300 # duration of a time step in seconds +T = 160 # number of time steps (5 minutes * 160 = 800 minutes = 13.33 hours) +TIMESTEP_DURATION = 300 # duration of a time step in seconds (5 minutes) + +# D = 10 # number of devices +# B = 100 # number of buckets +# S = 20 # number of stratification layers +# T = 288 # number of time steps (5 minutes * 288 = 1440 minutes = 24 hours) +# TIMESTEP_DURATION = 300 # duration of a time step in seconds (5 minutes) """ # Ideas for speeding up From c0639725575a27935453be1e517d47cf1d1ac296 Mon Sep 17 00:00:00 2001 From: Vlad Iftime Date: Wed, 4 Jun 2025 00:35:08 +0200 Subject: [PATCH 33/33] Removed simple getters that get lost --- .../frbc/frbc_operation_mode_wrapper.py | 6 +++--- .../device_planner/frbc/frbc_timestep.py | 16 ++++++++-------- .../frbc/s2_frbc_device_state_wrapper.py | 12 ++++++------ .../tests/profiling_results.html | 2 +- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py index d8c9eb5..7b353f9 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py @@ -53,13 +53,13 @@ def calculate_uses_factor(self) -> bool: for element in self.elements: if ( abs( - element.get_fill_rate().get_start_of_range() - - element.get_fill_rate().get_end_of_range() + element.fill_rate.start_of_range + - element.fill_rate.end_of_range ) > S2FrbcDeviceStateWrapper.epsilon ): return True - for power_range in element.get_power_ranges(): + for power_range in element.frbc_operation_mode_element.power_ranges: if ( abs(power_range.start_of_range - power_range.end_of_range) > S2FrbcDeviceStateWrapper.epsilon diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py index 14d4af3..f8b663b 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -147,23 +147,23 @@ def state_is_within_fill_level_target_range(self, state: FrbcState) -> bool: if self.fill_level_target is None: return True return ( - self.fill_level_target.get_start_of_range() is None - or state.get_fill_level() >= self.fill_level_target.get_start_of_range() + self.fill_level_target.start_of_range is None + or state.get_fill_level() >= self.fill_level_target.start_of_range ) and ( - self.fill_level_target.get_end_of_range() is None - or state.get_fill_level() <= self.fill_level_target.get_end_of_range() + self.fill_level_target.end_of_range is None + or state.get_fill_level() <= self.fill_level_target.end_of_range ) def get_fill_level_target_distance(self, state: FrbcState) -> float: if self.fill_level_target is None: return 0 if ( - self.fill_level_target.get_end_of_range() is None - or state.get_fill_level() < self.fill_level_target.get_start_of_range() + self.fill_level_target.end_of_range is None + or state.get_fill_level() < self.fill_level_target.start_of_range ): - return self.fill_level_target.get_start_of_range() - state.get_fill_level() + return self.fill_level_target.start_of_range - state.get_fill_level() else: - return state.get_fill_level() - self.fill_level_target.get_end_of_range() + return state.get_fill_level() - self.fill_level_target.end_of_range def get_forecasted_usage(self) -> float: return self.forecasted_fill_level_usage diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py index bf6710e..7bc86b6 100644 --- a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -251,9 +251,9 @@ def find_operation_mode_element(om, fill_level): ( e for e in om.get_elements() - if e.get_fill_level_range().get_start_of_range() + if e.fill_level_range.start_of_range <= fill_level - <= e.get_fill_level_range().get_end_of_range() + <= e.fill_level_range.end_of_range ), None, ) @@ -262,7 +262,7 @@ def find_operation_mode_element(om, fill_level): last = om.get_elements()[-1] element = ( first - if fill_level < first.get_fill_level_range().get_start_of_range() + if fill_level < first.fill_level_range.start_of_range else last ) return element @@ -271,9 +271,9 @@ def get_operation_mode_fill_rate( self, om: FrbcOperationModeWrapper, fill_level: float, factor: float ) -> float: element = self.find_operation_mode_element(om, fill_level) - fill_rate = element.get_fill_rate() - start = fill_rate.get_end_of_range() - end = fill_rate.get_start_of_range() + fill_rate = element.fill_rate + start = fill_rate.end_of_range + end = fill_rate.start_of_range return (start - end) * factor + end @staticmethod diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.html b/flexmeasures_s2/profile_steering/tests/profiling_results.html index 78abb64..f6d4d63 100644 --- a/flexmeasures_s2/profile_steering/tests/profiling_results.html +++ b/flexmeasures_s2/profile_steering/tests/profiling_results.html @@ -25,7 +25,7 @@